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

41 lines
974 B
Nix
Raw Normal View History

{ stdenv, fetchurl
, CoreServices ? null }:
2016-10-21 16:40:51 +03:00
let version = "4.13.1"; in
stdenv.mkDerivation {
name = "nspr-${version}";
src = fetchurl {
2016-05-09 16:49:44 +03:00
url = "mirror://mozilla/nspr/releases/v${version}/src/nspr-${version}.tar.gz";
2016-10-21 16:40:51 +03:00
sha256 = "5e4c1751339a76e7c772c0c04747488d7f8c98980b434dc846977e43117833ab";
};
outputs = [ "out" "dev" ];
outputBin = "dev";
2015-08-21 01:32:29 +03:00
preConfigure = ''
cd nspr
'';
2015-08-21 01:32:29 +03:00
configureFlags = [
"--enable-optimize"
"--disable-debug"
] ++ stdenv.lib.optional stdenv.is64bit "--enable-64bit";
2015-08-21 01:32:29 +03:00
postInstall = ''
find $out -name "*.a" -delete
moveToOutput share "$dev" # just aclocal
2015-08-21 01:32:29 +03:00
'';
buildInputs = [] ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices ];
enableParallelBuilding = true;
2012-09-11 21:44:18 +04: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 23:41:38 +03:00
platforms = stdenv.lib.platforms.all;
};
}