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

53 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl
, CoreServices ? null
, buildPackages }:
2019-11-02 08:22:59 -07:00
let version = "4.23"; in
stdenv.mkDerivation {
2019-08-13 14:52:01 -07:00
pname = "nspr";
inherit version;
src = fetchurl {
2016-05-09 06:49:44 -07:00
url = "mirror://mozilla/nspr/releases/v${version}/src/nspr-${version}.tar.gz";
2019-11-02 08:22:59 -07:00
sha256 = "193p6i2r6wvpb4i04a9pxbqkxcn8rbcmwl81m4yp5xgs6w8857ab";
};
2019-03-07 05:25:52 -08:00
patches = [
./0001-Makefile-use-SOURCE_DATE_EPOCH-for-reproducibility.patch
];
outputs = [ "out" "dev" ];
outputBin = "dev";
2015-08-20 15:32:29 -07:00
preConfigure = ''
cd nspr
'' + stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace configure --replace '@executable_path/' "$out/lib/"
substituteInPlace configure.in --replace '@executable_path/' "$out/lib/"
2015-08-20 15:32:29 -07:00
'';
HOST_CC = "cc";
depsBuildBuild = [ buildPackages.stdenv.cc ];
2015-08-20 15:32:29 -07:00
configureFlags = [
"--enable-optimize"
"--disable-debug"
] ++ stdenv.lib.optional stdenv.is64bit "--enable-64bit";
2015-08-20 15:32:29 -07:00
postInstall = ''
find $out -name "*.a" -delete
moveToOutput share "$dev" # just aclocal
2015-08-20 15:32:29 -07:00
'';
buildInputs = [] ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
enableParallelBuilding = true;
2012-09-11 10:44:18 -07:00
2018-10-25 12:44:57 -07:00
meta = with stdenv.lib; {
homepage = http://www.mozilla.org/projects/nspr/;
description = "Netscape Portable Runtime, a platform-neutral API for system-level and libc-like functions";
2018-10-25 12:44:57 -07:00
platforms = platforms.all;
license = licenses.mpl20;
};
}