nixpkgs/pkgs/development/libraries/nss/default.nix

88 lines
2.3 KiB
Nix
Raw Normal View History

2013-08-07 15:17:58 +01:00
{ stdenv, fetchurl, nspr, perl, zlib, sqlite
, includeTools ? false
}:
let
2013-08-07 15:17:58 +01:00
nssPEM = fetchurl {
2014-02-06 20:15:43 +00:00
url = http://dev.gentoo.org/~polynomial-c/mozilla/nss-3.15.4-pem-support-20140109.patch.xz;
sha256 = "10ibz6y0hknac15zr6dw4gv9nb5r5z9ym6gq18j3xqx7v7n3vpdw";
};
in stdenv.mkDerivation rec {
name = "nss-${version}";
2015-05-29 23:29:53 +01:00
version = "3.19.1";
2012-10-31 13:04:58 +00:00
src = fetchurl {
2015-05-29 23:29:53 +01:00
url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_19_1_RTM/src/${name}.tar.gz";
sha256 = "b7be709551ec13206d8e3e8c065b894fa981c11573115e9478fa051029c52fff";
};
buildInputs = [ nspr perl zlib sqlite ];
2013-08-07 15:17:58 +01:00
prePatch = ''
xz -d < ${nssPEM} | patch -p1
'';
2013-08-07 15:17:58 +01:00
patches =
2014-10-14 19:26:51 +01:00
[ ./nss-3.17-gentoo-fixups.patch
2014-04-22 13:54:36 +01:00
# Based on http://patch-tracker.debian.org/patch/series/dl/nss/2:3.15.4-1/85_security_load.patch
./85_security_load.patch
2013-08-07 15:17:58 +01:00
];
postPatch = ''
2013-08-07 15:17:58 +01:00
# Fix up the patch from Gentoo.
sed -i \
-e "/^PREFIX =/s|= /usr|= $out|" \
-e '/@libdir@/s|gentoo/nss|lib|' \
-e '/ln -sf/d' \
2013-08-07 15:17:58 +01:00
nss/config/Makefile
# Note for spacing/tab nazis: The TAB characters are intentional!
2013-08-07 15:17:58 +01:00
cat >> nss/config/Makefile <<INSTALL_TARGET
install:
mkdir -p \$(DIST)/lib/pkgconfig
cp nss.pc \$(DIST)/lib/pkgconfig
INSTALL_TARGET
'';
2013-08-07 15:17:58 +01:00
preConfigure = "cd nss";
makeFlags = [
"NSPR_INCLUDE_DIR=${nspr}/include/nspr"
"NSPR_LIB_DIR=${nspr}/lib"
"NSDISTMODE=copy"
"BUILD_OPT=1"
"SOURCE_PREFIX=\$(out)"
"NSS_ENABLE_ECC=1"
"NSS_USE_SYSTEM_SQLITE=1"
] ++ stdenv.lib.optional stdenv.is64bit "USE_64=1";
postInstall = ''
rm -rf $out/private
mv $out/public $out/include
mv $out/*.OBJ/* $out/
rmdir $out/*.OBJ
cp -av config/nss-config $out/bin/nss-config
2013-08-07 15:17:58 +01:00
ln -s lib $out/lib64
'';
postFixup = ''
for libname in freebl3 nssdbm3 softokn3
do
libfile="$out/lib/lib$libname.so"
LD_LIBRARY_PATH=$out/lib $out/bin/shlibsign -v -i "$libfile"
done
'' + stdenv.lib.optionalString (!includeTools) ''
find $out/bin -type f \( -name nss-config -o -delete \)
'';
2013-08-07 15:17:58 +01:00
2015-05-20 20:46:14 +01:00
meta = with stdenv.lib; {
2013-08-07 15:17:58 +01:00
homepage = https://developer.mozilla.org/en-US/docs/NSS;
description = "A set of libraries for development of security-enabled client and server applications";
2015-05-20 20:46:14 +01:00
platforms = platforms.all;
2013-08-07 15:17:58 +01:00
};
}