12ae5363ea
* Make builders unexecutable by removing the hash-bang line and execute permission. * Convert calls to `derivation' to `mkDerivation'. * Remove `system' and `stdenv' attributes from calls to `mkDerivation'. These transformations were all done automatically, so it is quite possible I broke stuff. * Put the `mkDerivation' function in stdenv/generic. svn path=/nixpkgs/trunk/; revision=874
24 lines
512 B
Nix
24 lines
512 B
Nix
{ stdenv, fetchurl, pkgconfig, gtk, perl, zip, libIDL
|
|
}:
|
|
|
|
assert pkgconfig != null && gtk != null && perl != null
|
|
&& zip != null && libIDL != null;
|
|
|
|
assert libIDL.glib == gtk.glib;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "firefox-0.8";
|
|
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/0.8/firefox-source-0.8.tar.bz2;
|
|
md5 = "cdc85152f4219bf3e3f1a8dc46e04654";
|
|
};
|
|
|
|
pkgconfig = pkgconfig;
|
|
gtk = gtk;
|
|
perl = perl;
|
|
zip = zip;
|
|
libIDL = libIDL;
|
|
}
|