* Added NSPR, the Netscape Portable Runtime, and use it in Xulrunner

and Firefox.
* Xulrunner: don't install the tests.  This saves a few megabytes.

svn path=/nixpkgs/trunk/; revision=16173
This commit is contained in:
Eelco Dolstra
2009-07-04 12:25:35 +00:00
parent fd7a6cd6b5
commit b8558fd04f
3 changed files with 32 additions and 7 deletions

View File

@@ -0,0 +1,21 @@
{stdenv, fetchurl}:
let version = "4.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";
sha256 = "1znvc7fb4f6318kbn1w86p134r4cslij25sg7kcspfx746m89pm2";
};
preConfigure = "cd mozilla/nsprpub";
configureFlags = "--enable-optimize --disable-debug";
meta = {
homepage = http://www.mozilla.org/projects/nspr/;
description = "Netscape Portable Runtime, a platform-neutral API for system-level and libc-like functions";
};
}