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

38 lines
894 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2015-12-16 15:04:36 +00:00
let version = "4.11"; in
stdenv.mkDerivation {
name = "nspr-${version}";
src = fetchurl {
url = "http://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${version}/src/nspr-${version}.tar.gz";
2015-12-16 15:04:36 +00:00
sha256 = "cb320a9eee7028275ac0fce7adc39dee36f14f02fd8432fce1b7e1aa5e3685c2";
};
outputs = [ "dev" "out" ];
outputBin = "dev";
2015-08-20 23:32:29 +01:00
preConfigure = ''
cd nspr
'';
2015-08-20 23:32:29 +01:00
configureFlags = [
"--enable-optimize"
"--disable-debug"
] ++ stdenv.lib.optional stdenv.is64bit "--enable-64bit";
2015-08-20 23:32:29 +01:00
postInstall = ''
find $out -name "*.a" -delete
moveToOutput share "$dev" # just aclocal
2015-08-20 23:32:29 +01:00
'';
enableParallelBuilding = true;
2012-09-11 18:44:18 +01: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 21:41:38 +01:00
platforms = stdenv.lib.platforms.all;
};
}