Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 200473b2254b
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0193158b3246
Choose a head ref
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Feb 25, 2020

  1. perlPackages.MozillaCA: replace outdated cacert.pem with pkgs.cacert

    Mozilla::CA returns a path to a bundled cacert.pem file, this commit replaces
    the bundled certificates with pkgs.cacert.
    stigtsp committed Feb 25, 2020
    Copy the full SHA
    243b4cd View commit details

Commits on Mar 1, 2020

  1. postman: 7.18.0 -> 7.19.1

    evanjs authored and Jon committed Mar 1, 2020
    Copy the full SHA
    a8b644f View commit details
  2. Merge pull request #80991 from stigtsp/package/perl-mozilla-ca-cert-f…

    …ile-patch
    
    perlPackages.MozillaCA: replace outdated cacert.pem with pkgs.cacert
    flokli authored Mar 1, 2020
    Copy the full SHA
    0193158 View commit details
Showing with 7 additions and 2 deletions.
  1. +2 −2 pkgs/development/web/postman/default.nix
  2. +5 −0 pkgs/top-level/perl-packages.nix
4 changes: 2 additions & 2 deletions pkgs/development/web/postman/default.nix
Original file line number Diff line number Diff line change
@@ -7,11 +7,11 @@

stdenv.mkDerivation rec {
pname = "postman";
version = "7.18.0";
version = "7.19.1";

src = fetchurl {
url = "https://dl.pstmn.io/download/version/${version}/linux64";
sha256 = "144yd4w1hqjmcp5v24ghkxh78fxc5ylzbgv7szp7y3vhwdanaiy7";
sha256 = "1p3614lhyn0qwqj99iqclpg4xfd3x4n1m34ya79530phqrrmnsh7";
name = "${pname}.tar.gz";
};

5 changes: 5 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -13135,6 +13135,11 @@ let
url = mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-20180117.tar.gz;
sha256 = "f2cc9fbe119f756313f321e0d9f1fac0859f8f154ac9d75b1a264c1afdf4e406";
};

postPatch = ''
ln -s --force ${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt lib/Mozilla/CA/cacert.pem
'';

meta = {
description = "Mozilla's CA cert bundle in PEM format";
license = stdenv.lib.licenses.mpl20;