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
25 lines
682 B
Nix
25 lines
682 B
Nix
{ stdenv, fetchurl, pkgconfig, perl, glib, libxml2, GConf
|
|
, libbonobo, gnomemimedata, popt, bzip2 }:
|
|
|
|
assert pkgconfig != null && perl != null && glib != null
|
|
&& libxml2 != null && GConf != null && libbonobo != null
|
|
&& gnomemimedata != null && bzip2 != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gnome-vfs-2.4.1";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = ftp://ftp.gnome.org/pub/gnome/sources/gnome-vfs/2.4/gnome-vfs-2.4.1.tar.bz2;
|
|
md5 = "cb7a36076f6a65e40c7f540be3057310";
|
|
};
|
|
pkgconfig = pkgconfig;
|
|
perl = perl;
|
|
glib = glib;
|
|
libxml2 = libxml2;
|
|
GConf = GConf;
|
|
libbonobo = libbonobo;
|
|
gnomemimedata = gnomemimedata;
|
|
popt = popt;
|
|
bzip2 = bzip2;
|
|
}
|