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

30 lines
787 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2015-01-28 15:28:32 +00:00
let version = "4.10.8"; 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-01-28 15:28:32 +00:00
sha256 = "507ea57c525c0c524dae4857a642b4ef5c9d795518754c7f83422d22fe544a15";
};
2013-06-06 11:04:26 +00:00
preConfigure = "cd nspr";
configureFlags = "--enable-optimize --disable-debug ${if stdenv.is64bit then "--enable-64bit" else ""}";
postInstall =
''
find $out -name "*.a" | xargs rm
'';
enableParallelBuilding = true;
2012-09-11 17:44:18 +00:00
2015-05-20 19:46:14 +00:00
meta = with stdenv.lib; {
homepage = http://www.mozilla.org/projects/nspr/;
description = "Netscape Portable Runtime, a platform-neutral API for system-level and libc-like functions";
2015-05-20 19:46:14 +00:00
platforms = platforms.all;
};
}