nixpkgs/pkgs/development/libraries/gtk+-1/gdk-pixbuf/default.nix
Eelco Dolstra 2fcc5fdb08 * "!isNull x" -> "x != null". Done automatically. Hope nothing
broke.

svn path=/nixpkgs/trunk/; revision=870
2004-03-29 10:25:25 +00:00

19 lines
455 B
Nix

{stdenv, fetchurl, gtk, libtiff, libjpeg, libpng}:
assert gtk != null && libtiff != null
&& libjpeg != null && libpng != null;
derivation {
name = "gdk-pixbuf-0.22.0";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/0.22/gdk-pixbuf-0.22.0.tar.bz2;
md5 = "05fcb68ceaa338614ab650c775efc2f2";
};
buildInputs = [gtk libtiff libjpeg libpng];
inherit stdenv;
}