2012-08-21 06:10:33 +02:00
|
|
|
{ stdenv, fetchurl, fetchgit, nspr, perl, zlib, sqlite
|
2012-08-20 09:39:55 +02:00
|
|
|
, includeTools ? false
|
|
|
|
}:
|
2005-08-24 11:54:42 +02:00
|
|
|
|
2009-07-06 13:42:21 +02:00
|
|
|
let
|
|
|
|
|
|
|
|
nssConfig = fetchurl {
|
|
|
|
url = "http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/dev-libs/nss/files/3.12-nss-config.in?rev=1.2";
|
|
|
|
sha256 = "1ck9q68fxkjq16nflixbqi4xc6bmylmj994h3f1j42g8mp0xf0vd";
|
|
|
|
};
|
|
|
|
|
2012-08-21 06:10:33 +02:00
|
|
|
nssPEM = fetchgit {
|
|
|
|
url = "git://git.fedorahosted.org/git/nss-pem.git";
|
|
|
|
rev = "07a683505d4a0a1113c4085c1ce117425d0afd80";
|
|
|
|
sha256 = "e4a9396d90e50e8b3cceff45f312eda9aaf356423f4eddd354a0e1afbbfd4cf8";
|
|
|
|
};
|
|
|
|
|
2009-07-06 13:42:21 +02:00
|
|
|
in
|
|
|
|
|
2012-08-20 05:41:58 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "nss-${version}";
|
|
|
|
version = "3.13.6";
|
|
|
|
|
|
|
|
src = let
|
|
|
|
uscoreVersion = stdenv.lib.replaceChars ["."] ["_"] version;
|
|
|
|
releasePath = "releases/NSS_${uscoreVersion}_RTM/src/nss-${version}.tar.gz";
|
|
|
|
in fetchurl {
|
|
|
|
url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/${releasePath}";
|
|
|
|
sha256 = "f7e90727e0ecc1c29de10da39a79bc9c53b814ccfbf40720e053b29c683d43a0";
|
2005-08-24 11:54:42 +02:00
|
|
|
};
|
|
|
|
|
2012-08-20 09:39:55 +02:00
|
|
|
buildInputs = [ nspr perl zlib sqlite ];
|
2009-07-06 11:12:44 +02:00
|
|
|
|
2012-08-21 06:10:33 +02:00
|
|
|
postUnpack = ''
|
|
|
|
cp -rdv "${nssPEM}/mozilla/security/nss/lib/ckfw/pem" \
|
|
|
|
"$sourceRoot/mozilla/security/nss/lib/ckfw/"
|
|
|
|
chmod -R u+w "$sourceRoot/mozilla/security/nss/lib/ckfw/pem"
|
|
|
|
'';
|
|
|
|
|
2011-01-03 18:02:58 +01:00
|
|
|
patches = [ ./nss-3.12.5-gentoo-fixups.diff ];
|
|
|
|
|
|
|
|
postPatch = ''
|
2012-08-21 06:10:33 +02:00
|
|
|
sed -i -e 's/^DIRS.*$/& pem/' mozilla/security/nss/lib/ckfw/manifest.mn
|
2012-03-06 21:57:39 +01:00
|
|
|
sed -i -e "/^PREFIX =/s:= /usr:= $out:" mozilla/security/nss/config/Makefile
|
2011-01-03 18:02:58 +01:00
|
|
|
'';
|
|
|
|
|
2009-07-06 11:12:44 +02:00
|
|
|
preConfigure = "cd mozilla/security/nss";
|
|
|
|
|
nss: Clean up build/make flags.
First of all, let's remove that redundant BUILD_OPT variable.
This variable already is in makeFlags, so we really don't want it to be lurking
around in the attribute set of the derivation, and it annoys me for being there
for days.
We now state build targets explicitly rather than relying on "nss_build_all".
This makes NSPR_CONFIG_STATUS and the touch of build_nspr stamp obsolete, as
only nss_build_all includes build_nspr.
In addition, we don't need the -lz hack anymore, as this has been fixed in
recent NSS versions, so we can completly remove the postBuild hook.
And while we're at it, we're removing those outdated build instructions as well,
especially because we don't and can't follow official building guidelines
anymore, as those are difficult to apply to Nix.
2012-08-21 10:47:29 +02:00
|
|
|
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";
|
|
|
|
|
|
|
|
buildFlags = [ "build_coreconf" "build_dbm" "all" ];
|
2005-08-24 11:54:42 +02:00
|
|
|
|
2009-07-06 11:12:44 +02:00
|
|
|
postInstall =
|
|
|
|
''
|
2009-07-06 13:42:21 +02:00
|
|
|
#find $out -name "*.a" | xargs rm
|
2009-07-06 11:12:44 +02:00
|
|
|
rm -rf $out/private
|
|
|
|
mv $out/public $out/include
|
|
|
|
mv $out/*.OBJ/* $out/
|
|
|
|
rmdir $out/*.OBJ
|
2010-08-11 11:38:09 +02:00
|
|
|
${if includeTools then "" else "rm -rf $out/bin"}
|
2009-07-06 13:42:21 +02:00
|
|
|
|
|
|
|
# Borrowed from Gentoo. Firefox expects an nss-config script,
|
|
|
|
# but NSS doesn't provide it.
|
2012-03-06 21:57:39 +01:00
|
|
|
|
2009-07-06 13:42:21 +02:00
|
|
|
NSS_VMAJOR=`cat lib/nss/nss.h | grep "#define.*NSS_VMAJOR" | awk '{print $3}'`
|
|
|
|
NSS_VMINOR=`cat lib/nss/nss.h | grep "#define.*NSS_VMINOR" | awk '{print $3}'`
|
|
|
|
NSS_VPATCH=`cat lib/nss/nss.h | grep "#define.*NSS_VPATCH" | awk '{print $3}'`
|
|
|
|
|
2010-08-11 11:38:09 +02:00
|
|
|
${if includeTools then "" else "mkdir $out/bin"}
|
2009-07-06 13:42:21 +02:00
|
|
|
cp ${nssConfig} $out/bin/nss-config
|
|
|
|
chmod u+x $out/bin/nss-config
|
|
|
|
substituteInPlace $out/bin/nss-config \
|
|
|
|
--subst-var-by MOD_MAJOR_VERSION $NSS_VMAJOR \
|
|
|
|
--subst-var-by MOD_MINOR_VERSION $NSS_VMINOR \
|
|
|
|
--subst-var-by MOD_PATCH_VERSION $NSS_VPATCH \
|
|
|
|
--subst-var-by prefix $out \
|
|
|
|
--subst-var-by exec_prefix $out \
|
|
|
|
--subst-var-by includedir $out/include/nss \
|
|
|
|
--subst-var-by libdir $out/lib
|
2009-07-06 11:12:44 +02:00
|
|
|
''; # */
|
2005-08-24 11:54:42 +02:00
|
|
|
}
|