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

55 lines
1.4 KiB
Nix
Raw Normal View History

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