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
16 lines
404 B
Nix
16 lines
404 B
Nix
{stdenv, fetchurl, pkgconfig, gtk, libxml2}:
|
|
|
|
assert pkgconfig != null && gtk != null && libxml2 != null;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libglade-2.0.1";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://ftp.gnome.org/pub/GNOME/desktop/2.4/2.4.1/sources/libglade-2.0.1.tar.bz2;
|
|
md5 = "4d93f6b01510013ae429e91af432cfe2";
|
|
};
|
|
pkgconfig = pkgconfig;
|
|
gtk = gtk;
|
|
libxml2 = libxml2;
|
|
}
|