Skip to content

Commit 3c6e969

Browse files
committedJul 31, 2017
cacert: fix unicode names in blacklist
Fixes #27576. (cherry picked from commit 55742a2)
1 parent 138313f commit 3c6e969

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎pkgs/data/misc/cacert/default.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ stdenv, fetchurl, writeText, nss, python
1+
{ stdenv, fetchurl, writeText, nss, python3
22
, blacklist ? []
33
, includeEmail ? false
44
}:
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
2020

2121
src = nss.src;
2222

23-
nativeBuildInputs = [ python ];
23+
nativeBuildInputs = [ python3 ];
2424

2525
configurePhase = ''
2626
ln -s nss/lib/ckfw/builtins/certdata.txt

0 commit comments

Comments
 (0)
Please sign in to comment.