2021-08-10 11:01:28 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, CoreServices
|
|
|
|
, buildPackages
|
2022-08-05 22:37:32 +00:00
|
|
|
, nixosTests
|
2021-08-10 11:01:28 +00:00
|
|
|
}:
|
2009-07-04 12:25:35 +00:00
|
|
|
|
2021-06-14 14:11:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "nspr";
|
2022-09-12 19:12:25 +00:00
|
|
|
version = "4.35";
|
2009-07-04 12:25:35 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-05-09 13:49:44 +00:00
|
|
|
url = "mirror://mozilla/nspr/releases/v${version}/src/nspr-${version}.tar.gz";
|
2022-09-12 19:12:25 +00:00
|
|
|
hash = "sha256-fqMpfqWWm10lpd2NR/JEPNqI6e50YwH24eFCb4pqvI8=";
|
2009-07-04 12:25:35 +00:00
|
|
|
};
|
|
|
|
|
2019-03-07 13:25:52 +00:00
|
|
|
patches = [
|
|
|
|
./0001-Makefile-use-SOURCE_DATE_EPOCH-for-reproducibility.patch
|
|
|
|
];
|
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-05 15:45:54 +00:00
|
|
|
outputBin = "dev";
|
|
|
|
|
2015-08-20 22:32:29 +00:00
|
|
|
preConfigure = ''
|
|
|
|
cd nspr
|
2021-01-21 17:00:13 +00:00
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
2018-02-20 10:11:05 +00:00
|
|
|
substituteInPlace configure --replace '@executable_path/' "$out/lib/"
|
|
|
|
substituteInPlace configure.in --replace '@executable_path/' "$out/lib/"
|
2015-08-20 22:32:29 +00:00
|
|
|
'';
|
2009-07-04 12:25:35 +00:00
|
|
|
|
2018-11-21 03:25:28 +00:00
|
|
|
HOST_CC = "cc";
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2015-08-20 22:32:29 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-optimize"
|
|
|
|
"--disable-debug"
|
2021-01-21 17:00:13 +00:00
|
|
|
] ++ lib.optional stdenv.is64bit "--enable-64bit";
|
2009-07-04 12:25:35 +00:00
|
|
|
|
2015-08-20 22:32:29 +00:00
|
|
|
postInstall = ''
|
|
|
|
find $out -name "*.a" -delete
|
2015-12-02 09:03:23 +00:00
|
|
|
moveToOutput share "$dev" # just aclocal
|
2015-08-20 22:32:29 +00:00
|
|
|
'';
|
2012-06-08 17:41:59 +00:00
|
|
|
|
2021-08-10 11:01:28 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
|
2016-08-12 04:24:44 +00:00
|
|
|
|
2012-06-08 17:41:59 +00:00
|
|
|
enableParallelBuilding = true;
|
2012-09-11 17:44:18 +00:00
|
|
|
|
2022-08-05 22:37:32 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit (nixosTests) firefox firefox-esr-91 firefox-esr-102;
|
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2021-08-10 11:01:28 +00:00
|
|
|
homepage = "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Reference/NSPR_functions";
|
2009-07-04 12:25:35 +00:00
|
|
|
description = "Netscape Portable Runtime, a platform-neutral API for system-level and libc-like functions";
|
2022-05-26 16:07:44 +00:00
|
|
|
maintainers = with maintainers; [ ajs124 hexa ];
|
2018-10-25 19:44:57 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.mpl20;
|
2009-07-04 12:25:35 +00:00
|
|
|
};
|
|
|
|
}
|