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

44 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl
, CoreServices ? null }:
let version = "4.18"; in
stdenv.mkDerivation {
name = "nspr-${version}";
src = fetchurl {
2016-05-09 13:49:44 +00:00
url = "mirror://mozilla/nspr/releases/v${version}/src/nspr-${version}.tar.gz";
sha256 = "0d7vr3wrgp73qbywrvdkikk8vq1s1n9vhf62db80g1zqkg05g5mq";
};
outputs = [ "out" "dev" ];
outputBin = "dev";
2015-08-20 22:32:29 +00: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 22:32:29 +00:00
'';
2015-08-20 22:32:29 +00:00
configureFlags = [
"--enable-optimize"
"--disable-debug"
] ++ stdenv.lib.optional stdenv.is64bit "--enable-64bit";
2015-08-20 22:32:29 +00:00
postInstall = ''
find $out -name "*.a" -delete
moveToOutput share "$dev" # just aclocal
2015-08-20 22:32:29 +00:00
'';
buildInputs = [] ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
enableParallelBuilding = true;
2012-09-11 17:44:18 +00:00
meta = {
homepage = http://www.mozilla.org/projects/nspr/;
description = "Netscape Portable Runtime, a platform-neutral API for system-level and libc-like functions";
2015-09-18 20:41:38 +00:00
platforms = stdenv.lib.platforms.all;
};
}