baec8f5b38
contains arbitrary information about a package, like this: meta = { homepage = "http://gcc.gnu.org/"; license = "GPL/LGPL"; description = "GNU Compiler Collection, 4.0.x"; }; The "meta" attribute is not passed to the actual derivation operation, so it's not a dependency --- changes to "meta" attributes don't trigger a recompilation. Now we have to standardise some useful attributes ;-) svn path=/nixpkgs/branches/usability/; revision=5024
22 lines
558 B
Nix
22 lines
558 B
Nix
{stdenv, fetchurl, pkgconfig, gtk, perl, zip, libIDL, libXi}:
|
|
|
|
# !!! assert libIDL.glib == gtk.glib;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "firefox-1.5.0.1";
|
|
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://releases.mozilla.org/pub/mozilla.org/firefox/releases/1.5.0.1/source/firefox-1.5.0.1-source.tar.bz2;
|
|
md5 = "c76f02956645bc823241379e27f76bb5";
|
|
};
|
|
|
|
buildInputs = [pkgconfig gtk perl zip libIDL libXi];
|
|
inherit gtk;
|
|
|
|
patches = [./writable-copies.patch];
|
|
|
|
meta = {
|
|
description = "Mozilla Firefox - the browser, reloaded";
|
|
};
|
|
}
|