2021-08-10 14:31:46 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, CoreServices
|
|
|
|
, buildPackages
|
2022-08-12 12:06:08 +00:00
|
|
|
, nixosTests
|
2021-08-10 14:31:46 +00:00
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "nspr";
|
2022-09-30 11:47:45 +00:00
|
|
|
version = "4.35";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://mozilla/nspr/releases/v${version}/src/nspr-${version}.tar.gz";
|
2022-09-30 11:47:45 +00:00
|
|
|
hash = "sha256-fqMpfqWWm10lpd2NR/JEPNqI6e50YwH24eFCb4pqvI8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./0001-Makefile-use-SOURCE_DATE_EPOCH-for-reproducibility.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
outputBin = "dev";
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
cd nspr
|
2024-09-26 11:04:55 +00:00
|
|
|
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
|
2020-04-24 23:36:52 +00:00
|
|
|
substituteInPlace configure --replace '@executable_path/' "$out/lib/"
|
|
|
|
substituteInPlace configure.in --replace '@executable_path/' "$out/lib/"
|
|
|
|
'';
|
|
|
|
|
|
|
|
HOST_CC = "cc";
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-optimize"
|
|
|
|
"--disable-debug"
|
2024-09-26 11:04:55 +00:00
|
|
|
] ++ lib.optional stdenv.hostPlatform.is64bit "--enable-64bit";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
find $out -name "*.a" -delete
|
|
|
|
moveToOutput share "$dev" # just aclocal
|
|
|
|
'';
|
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
passthru.tests = {
|
2023-10-09 19:29:22 +00:00
|
|
|
inherit (nixosTests) firefox firefox-esr-115;
|
2022-08-12 12:06:08 +00:00
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
homepage = "https://firefox-source-docs.mozilla.org/nspr/index.html";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Netscape Portable Runtime, a platform-neutral API for system-level and libc-like functions";
|
2022-06-16 17:23:12 +00:00
|
|
|
maintainers = with maintainers; [ ajs124 hexa ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.mpl20;
|
|
|
|
};
|
|
|
|
}
|