nixpkgs/pkgs/development/libraries/gnome/gnome-vfs/default.nix
Eelco Dolstra 259d0dd9ee * Gnome 2.14.3.
* GTK updates.
* Removed the bzip2 hack.

svn path=/nixpkgs/trunk/; revision=6104
2006-08-11 22:26:55 +00:00

17 lines
487 B
Nix

{ input, stdenv, fetchurl, pkgconfig, perl, glib, libxml2, GConf
, libbonobo, gnomemimedata, popt, perlXMLParser, gettext, bzip2
}:
assert pkgconfig != null && perl != null && glib != null
&& libxml2 != null && GConf != null && libbonobo != null
&& gnomemimedata != null;
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [
pkgconfig perl glib libxml2 GConf libbonobo
gnomemimedata popt perlXMLParser gettext bzip2
];
patches = [./no-kerberos.patch];
}