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
19 lines
582 B
Nix
19 lines
582 B
Nix
{ stdenv, fetchurl, pkgconfig, libgnome, libgnomecanvas, libbonoboui, libglade }:
|
|
|
|
assert pkgconfig != null && libgnome != null && libgnomecanvas != null
|
|
&& libbonoboui != null && libglade != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libgnomeui-2.4.0.1";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://ftp.gnome.org/pub/GNOME/desktop/2.4/2.4.1/sources/libgnomeui-2.4.0.1.tar.bz2;
|
|
md5 = "196f4a3f1f4a531ff57acaa879e98dd2";
|
|
};
|
|
pkgconfig = pkgconfig;
|
|
libgnome = libgnome;
|
|
libgnomecanvas = libgnomecanvas;
|
|
libbonoboui = libbonoboui;
|
|
libglade = libglade;
|
|
}
|