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

34 lines
800 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2015-08-20 22:32:29 +00:00
let version = "4.10.9"; 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-08-20 22:32:29 +00:00
sha256 = "4112ff6ad91d32696ca0c6c3d4abef6367b5dc0127fa172fcb3c3ab81bb2d881";
};
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
'';
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;
};
}