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

38 lines
898 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2015-11-04 08:55:55 +00:00
let version = "4.10.10"; 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-11-04 08:55:55 +00:00
sha256 = "343614971c30520d0fa55f4af0a72578e2d8674bb71caf7187490c3379523107";
};
outputs = [ "dev" "out" ];
outputBin = "dev";
2015-08-20 22:32:29 +00:00
preConfigure = ''
cd nspr
'';
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
'';
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;
};
}