2020-07-20 16:02:44 +01:00
{ stdenv , fetchurl , nspr , perl , zlib , sqlite , darwin , fixDarwinDylibNames , buildPackages , ninja }:
2005-08-24 10:54:42 +01:00
2009-07-06 12:42:21 +01:00
let
2013-08-07 15:17:58 +01:00
nssPEM = fetchurl {
2020-04-01 02:11:51 +01:00
url = " h t t p : / / d e v . g e n t o o . o r g / ~ p o l y n o m i a l - c / m o z i l l a / n s s - 3 . 1 5 . 4 - p e m - s u p p o r t - 2 0 1 4 0 1 0 9 . p a t c h . x z " ;
2014-02-06 20:15:43 +00:00
sha256 = " 1 0 i b z 6 y 0 h k n a c 1 5 z r 6 d w 4 g v 9 n b 5 r 5 z 9 y m 6 g q 1 8 j 3 x q x 7 v 7 n 3 v p d w " ;
2012-08-21 05:10:33 +01:00
} ;
2020-06-29 02:09:27 +01:00
version = " 3 . 5 4 " ;
2018-12-02 04:25:55 +00:00
underscoreVersion = builtins . replaceStrings [ " . " ] [ " _ " ] version ;
2012-08-21 05:10:33 +01:00
2012-08-22 01:46:48 +01:00
in stdenv . mkDerivation rec {
2019-08-15 13:41:18 +01:00
pname = " n s s " ;
2018-12-02 04:25:55 +00:00
inherit version ;
2012-10-31 13:04:58 +00:00
src = fetchurl {
2019-08-15 13:41:18 +01:00
url = " m i r r o r : / / m o z i l l a / s e c u r i t y / n s s / r e l e a s e s / N S S _ ${ underscoreVersion } _ R T M / s r c / ${ pname } - ${ version } . t a r . g z " ;
2020-06-29 02:09:27 +01:00
sha256 = " 0 h v f i p 0 5 6 p l 0 7 h 6 w 9 1 i 6 f y j i 5 n c z r r s x y r 5 6 r l s 7 j d 2 y r y z q p c f s " ;
2005-08-24 10:54:42 +01:00
} ;
2019-03-20 20:05:45 +00:00
depsBuildBuild = [ buildPackages . stdenv . cc ] ;
2020-07-20 16:02:44 +01:00
nativeBuildInputs = [ perl ninja ( buildPackages . python3 . withPackages ( ps : with ps ; [ gyp ] ) ) ]
++ stdenv . lib . optional stdenv . isDarwin darwin . cctools ;
2019-03-20 20:05:45 +00:00
buildInputs = [ zlib sqlite ]
2018-02-20 10:12:24 +00:00
++ stdenv . lib . optional stdenv . isDarwin fixDarwinDylibNames ;
2017-03-22 18:47:51 +00:00
propagatedBuildInputs = [ nspr ] ;
2009-07-06 10:12:44 +01:00
2013-08-07 15:17:58 +01:00
prePatch = ''
2020-05-04 00:39:35 +01:00
# strip the trailing whitespace from the patch line and the renamed CKO_NETSCAPE_ enum to CKO_NSS_
xz - d < $ { nssPEM } | sed \
2020-06-29 02:09:27 +01:00
- e ' s/-DIRS = builtins $ /-DIRS = . builtins /g ' \
2020-05-04 00:39:35 +01:00
- e ' s/CKO_NETSCAPE_/CKO_NSS_/g ' \
- e ' s/CKT_NETSCAPE_/CKT_NSS_/g ' \
| patch - p1
2020-06-29 02:09:27 +01:00
patchShebangs nss
for f in nss/coreconf/config.gypi nss/build.sh nss/coreconf/config.gypi ; do
substituteInPlace " $ f " - - replace " / u s r / b i n / e n v " " ${ buildPackages . coreutils } / b i n / e n v "
done
substituteInPlace nss/coreconf/config.gypi - - replace " / u s r / b i n / g r e p " " ${ buildPackages . coreutils } / b i n / e n v g r e p "
2012-08-21 05:10:33 +01:00
'' ;
2013-08-07 15:17:58 +01:00
patches =
2017-09-29 00:52:45 +01:00
[
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
2014-01-22 09:46:29 +00:00
./85_security_load.patch
2018-01-03 21:39:37 +00:00
./ckpem.patch
2020-06-29 02:09:27 +01:00
./fix-cross-compilation.patch
2013-08-07 15:17:58 +01:00
] ;
2011-01-03 17:02:58 +00:00
2019-10-26 16:39:27 +01:00
patchFlags = [ " - p 0 " ] ;
2017-01-24 13:49:14 +00:00
2016-08-29 01:30:01 +01:00
outputs = [ " o u t " " d e v " " t o o l s " ] ;
2015-10-05 16:45:54 +01:00
2013-08-07 15:17:58 +01:00
preConfigure = " c d n s s " ;
2009-07-06 10:12:44 +01:00
2020-06-29 02:09:27 +01:00
buildPhase = let
getArch = platform : if platform . isx86_64 then " x 6 4 "
else if platform . isx86_32 then " i a 3 2 "
else if platform . isAarch32 then " a r m "
else if platform . isAarch64 then " a r m 6 4 "
else platform . parsed . cpu . name ;
# 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
target = getArch stdenv . hostPlatform ;
host = getArch stdenv . buildPlatform ;
in ''
runHook preBuild
sed - i ' s | nss_dist_dir = " $ d i s t _ d i r " | nss_dist_dir = " ' $ o u t ' " | ; s | nss_dist_obj_dir = " $ o b j _ d i r " | nss_dist_obj_dir = " ' $ o u t ' " | ' build . sh
./build.sh - v - - opt \
- - with-nspr = $ { nspr . dev } /include : $ { nspr . out } /lib \
- - system-sqlite \
- - enable-legacy-db \
- - target $ { target } \
- Dhost_arch = $ { host } \
- Duse_system_zlib = 1 \
$ { stdenv . lib . optionalString stdenv . isDarwin " - - c l a n g " } \
$ { stdenv . lib . optionalString ( stdenv . hostPlatform != stdenv . buildPlatform ) " - - d i s a b l e - t e s t s " }
runHook postBuild
'' ;
NIX_CFLAGS_COMPILE = " - W n o - e r r o r - D N I X _ N S S _ L I B D I R = \" ${ placeholder " o u t " } / l i b / \" " ;
installPhase = ''
runHook preInstall
2012-08-22 03:22:43 +01:00
rm - rf $ out/private
2020-06-29 02:09:27 +01:00
find $ out - name " * . T O C " - delete
2012-08-22 03:22:43 +01:00
mv $ out/public $ out/include
2012-03-06 20:57:39 +00:00
2013-08-07 15:17:58 +01:00
ln - s lib $ out/lib64
2017-09-29 00:52:45 +01:00
# Upstream issue: https://bugzilla.mozilla.org/show_bug.cgi?id=530672
# https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-libs/nss/files/nss-3.32-gentoo-fixups.patch?id=af1acce6c6d2c3adb17689261dfe2c2b6771ab8a
NSS_MAJOR_VERSION = ` grep " N S S _ V M A J O R " lib/nss/nss.h | awk ' { print $ 3 } ' `
NSS_MINOR_VERSION = ` grep " N S S _ V M I N O R " lib/nss/nss.h | awk ' { print $ 3 } ' `
NSS_PATCH_VERSION = ` grep " N S S _ V P A T C H " lib/nss/nss.h | awk ' { print $ 3 } ' `
PREFIX = " $ o u t "
mkdir - p $ out/lib/pkgconfig
sed - e " s , % p r e f i x % , $ P R E F I X , " \
- e " s , % e x e c _ p r e f i x % , $ P R E F I X , " \
- e " s , % l i b d i r % , $ P R E F I X / l i b 6 4 , " \
2017-10-09 19:49:11 +01:00
- e " s , % i n c l u d e d i r % , $ d e v / i n c l u d e / n s s , " \
2017-09-29 00:52:45 +01:00
- e " s , % N S S _ V E R S I O N % , $ N S S _ M A J O R _ V E R S I O N . $ N S S _ M I N O R _ V E R S I O N . $ N S S _ P A T C H _ V E R S I O N , g " \
- e " s , % N S P R _ V E R S I O N % , 4 . 1 6 , g " \
pkg/pkg-config/nss.pc.in > $ out/lib/pkgconfig/nss.pc
chmod 0644 $ out/lib/pkgconfig/nss.pc
sed - e " s , @ p r e f i x @ , $ P R E F I X , " \
- e " s , @ M O D _ M A J O R _ V E R S I O N @ , $ N S S _ M A J O R _ V E R S I O N , " \
- e " s , @ M O D _ M I N O R _ V E R S I O N @ , $ N S S _ M I N O R _ V E R S I O N , " \
- e " s , @ M O D _ P A T C H _ V E R S I O N @ , $ N S S _ P A T C H _ V E R S I O N , " \
pkg/pkg-config/nss-config.in > $ out/bin/nss-config
chmod 0755 $ out/bin/nss-config
2012-08-22 03:22:43 +01:00
'' ;
2012-08-21 20:35:46 +01:00
2019-03-20 20:05:45 +00:00
postFixup = let
isCross = stdenv . hostPlatform != stdenv . buildPlatform ;
nss = if isCross then buildPackages . nss . tools else " $ o u t " ;
in ''
2012-08-21 20:35:46 +01:00
for libname in freebl3 nssdbm3 softokn3
2018-01-03 21:39:37 +00:00
do '' +
( if stdenv . isDarwin
then ''
libfile = " $ o u t / l i b / l i b $ l i b n a m e . d y l i b "
DYLD_LIBRARY_PATH = $ out/lib : $ { nspr . out } /lib \
'' e l s e ''
libfile = " $ o u t / l i b / l i b $ l i b n a m e . s o "
LD_LIBRARY_PATH = $ out/lib : $ { nspr . out } /lib \
'' ) + ''
2019-03-20 20:05:45 +00:00
$ { nss } /bin/shlibsign - v - i " $ l i b f i l e "
2012-08-21 20:35:46 +01:00
done
2015-10-05 16:45:54 +01:00
2015-12-02 09:03:23 +00:00
moveToOutput bin " $ t o o l s "
moveToOutput bin/nss-config " $ d e v "
moveToOutput lib/libcrmf.a " $ d e v " # needed by firefox, for example
2018-01-03 21:39:37 +00:00
rm - f " $ o u t " /lib /* . a
2020-06-29 02:09:27 +01:00
runHook postInstall
2012-08-21 20:35:46 +01:00
'' ;
2013-08-07 15:17:58 +01:00
2018-08-17 22:55:36 +01:00
meta = with stdenv . lib ; {
2020-04-01 02:11:51 +01:00
homepage = " h t t p s : / / d e v e l o p e r . m o z i l l a . o r g / e n - U S / d o c s / N S S " ;
2013-08-07 15:17:58 +01:00
description = " A s e t o f l i b r a r i e s f o r d e v e l o p m e n t o f s e c u r i t y - e n a b l e d c l i e n t a n d s e r v e r a p p l i c a t i o n s " ;
2018-08-17 22:55:36 +01:00
license = licenses . mpl20 ;
platforms = platforms . all ;
2013-08-07 15:17:58 +01:00
} ;
2005-08-24 10:54:42 +01:00
}