Skip to content

Commit

Permalink
Update CA certificates to NSS 3.87.
Browse files Browse the repository at this point in the history
  • Loading branch information
benkard committed Jan 8, 2023
1 parent d3c4409 commit 828496d
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
let sources = import ./nix/sources.nix; in
with import sources.nixpkgs {};
with import sources.nixpkgs
{
marge-bot = callPackage ./marge.nix {};
docker-image = callPackage ./dockerize.nix {};
overlays = [
(self: super: {

# Update NSS to a more recent version so we have an up-to-date
# CA certificate bundle.
nss =
self.callPackage
(import
(builtins.fetchurl "https://raw.githubusercontent.com/NixOS/nixpkgs/2473837984348f435be4d7679133a19853690000/pkgs/development/libraries/nss/generic.nix")
{
version = "3.87";
sha256 = "sha256-aKGJRJbT0Vi6vHX4pd2j9Vt8FWBXOTbjsQGhD6SsFS0=";
})
{ };
})
];
};

{
marge-bot = callPackage ./marge.nix { };
docker-image = callPackage ./dockerize.nix { };
}

0 comments on commit 828496d

Please sign in to comment.