1 { lib, stdenv, fetchurl, nspr, perl, zlib, sqlite, darwin, fixDarwinDylibNames, buildPackages, ninja
2 , # allow FIPS mode. Note that this makes the output non-reproducible.
3 # https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_Tech_Notes/nss_tech_note6
9 url = "http://dev.gentoo.org/~polynomial-c/mozilla/nss-3.15.4-pem-support-20140109.patch.xz";
10 sha256 = "10ibz6y0hknac15zr6dw4gv9nb5r5z9ym6gq18j3xqx7v7n3vpdw";
13 underscoreVersion = builtins.replaceStrings ["."] ["_"] version;
15 in stdenv.mkDerivation rec {
20 url = "mirror://mozilla/security/nss/releases/NSS_${underscoreVersion}_RTM/src/${pname}-${version}.tar.gz";
21 sha256 = "05jk65x3zy6q8lx2djj8ik7kg741n88iy4n3bblw89cv0xkxxk1d";
24 depsBuildBuild = [ buildPackages.stdenv.cc ];
26 nativeBuildInputs = [ perl ninja (buildPackages.python3.withPackages (ps: with ps; [ gyp ])) ]
27 ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.cctools fixDarwinDylibNames ];
29 buildInputs = [ zlib sqlite ];
31 propagatedBuildInputs = [ nspr ];
34 # strip the trailing whitespace from the patch line and the renamed CKO_NETSCAPE_ enum to CKO_NSS_
35 xz -d < ${nssPEM} | sed \
36 -e 's/-DIRS = builtins $/-DIRS = . builtins/g' \
37 -e 's/CKO_NETSCAPE_/CKO_NSS_/g' \
38 -e 's/CKT_NETSCAPE_/CKT_NSS_/g' \
43 for f in nss/coreconf/config.gypi nss/build.sh nss/coreconf/config.gypi; do
44 substituteInPlace "$f" --replace "/usr/bin/env" "${buildPackages.coreutils}/bin/env"
47 substituteInPlace nss/coreconf/config.gypi --replace "/usr/bin/grep" "${buildPackages.coreutils}/bin/env grep"
52 # Based on http://patch-tracker.debian.org/patch/series/dl/nss/2:3.15.4-1/85_security_load.patch
53 ./85_security_load.patch
55 ./fix-cross-compilation.patch
58 patchFlags = [ "-p0" ];
60 postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
61 substituteInPlace nss/coreconf/Darwin.mk --replace '@executable_path/$(notdir $@)' "$out/lib/\$(notdir \$@)"
62 substituteInPlace nss/coreconf/config.gypi --replace "'DYLIB_INSTALL_NAME_BASE': '@executable_path'" "'DYLIB_INSTALL_NAME_BASE': '$out/lib'"
65 outputs = [ "out" "dev" "tools" ];
67 preConfigure = "cd nss";
70 getArch = platform: if platform.isx86_64 then "x64"
71 else if platform.isx86_32 then "ia32"
72 else if platform.isAarch32 then "arm"
73 else if platform.isAarch64 then "arm64"
74 else if platform.isPower && platform.is64bit then (
75 if platform.isLittleEndian then "ppc64le" else "ppc64"
77 else platform.parsed.cpu.name;
78 # yes, this is correct. nixpkgs uses "host" for the platform the binary will run on whereas nss uses "host" for the platform that the build is running on
79 target = getArch stdenv.hostPlatform;
80 host = getArch stdenv.buildPlatform;
84 sed -i 's|nss_dist_dir="$dist_dir"|nss_dist_dir="'$out'"|;s|nss_dist_obj_dir="$obj_dir"|nss_dist_obj_dir="'$out'"|' build.sh
86 --with-nspr=${nspr.dev}/include:${nspr.out}/lib \
93 ${lib.optionalString enableFIPS "--enable-fips"} \
94 ${lib.optionalString stdenv.isDarwin "--clang"} \
95 ${lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) "--disable-tests"}
100 NIX_CFLAGS_COMPILE = "-Wno-error -DNIX_NSS_LIBDIR=\"${placeholder "out"}/lib/\"";
106 find $out -name "*.TOC" -delete
107 mv $out/public $out/include
111 # Upstream issue: https://bugzilla.mozilla.org/show_bug.cgi?id=530672
112 # https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-libs/nss/files/nss-3.32-gentoo-fixups.patch?id=af1acce6c6d2c3adb17689261dfe2c2b6771ab8a
113 NSS_MAJOR_VERSION=`grep "NSS_VMAJOR" lib/nss/nss.h | awk '{print $3}'`
114 NSS_MINOR_VERSION=`grep "NSS_VMINOR" lib/nss/nss.h | awk '{print $3}'`
115 NSS_PATCH_VERSION=`grep "NSS_VPATCH" lib/nss/nss.h | awk '{print $3}'`
118 mkdir -p $out/lib/pkgconfig
119 sed -e "s,%prefix%,$PREFIX," \
120 -e "s,%exec_prefix%,$PREFIX," \
121 -e "s,%libdir%,$PREFIX/lib64," \
122 -e "s,%includedir%,$dev/include/nss," \
123 -e "s,%NSS_VERSION%,$NSS_MAJOR_VERSION.$NSS_MINOR_VERSION.$NSS_PATCH_VERSION,g" \
124 -e "s,%NSPR_VERSION%,4.16,g" \
125 pkg/pkg-config/nss.pc.in > $out/lib/pkgconfig/nss.pc
126 chmod 0644 $out/lib/pkgconfig/nss.pc
128 sed -e "s,@prefix@,$PREFIX," \
129 -e "s,@MOD_MAJOR_VERSION@,$NSS_MAJOR_VERSION," \
130 -e "s,@MOD_MINOR_VERSION@,$NSS_MINOR_VERSION," \
131 -e "s,@MOD_PATCH_VERSION@,$NSS_PATCH_VERSION," \
132 pkg/pkg-config/nss-config.in > $out/bin/nss-config
133 chmod 0755 $out/bin/nss-config
137 isCross = stdenv.hostPlatform != stdenv.buildPlatform;
138 nss = if isCross then buildPackages.nss.tools else "$out";
140 (lib.optionalString enableFIPS (''
141 for libname in freebl3 nssdbm3 softokn3
145 libfile="$out/lib/lib$libname.dylib"
146 DYLD_LIBRARY_PATH=$out/lib:${nspr.out}/lib \
148 libfile="$out/lib/lib$libname.so"
149 LD_LIBRARY_PATH=$out/lib:${nspr.out}/lib \
151 ${nss}/bin/shlibsign -v -i "$libfile"
155 moveToOutput bin "$tools"
156 moveToOutput bin/nss-config "$dev"
157 moveToOutput lib/libcrmf.a "$dev" # needed by firefox, for example
164 homepage = "https://developer.mozilla.org/en-US/docs/NSS";
165 description = "A set of libraries for development of security-enabled client and server applications";
166 license = licenses.mpl20;
167 platforms = platforms.all;