nixpkgs/pkgs/development/libraries/gnome/gnome-vfs/default.nix
Eelco Dolstra 1a38af7e14 * Gnome 2.10.1.
* A script to generatie fetchurl calls for Gnome packages from
  directory listings.

svn path=/nixpkgs/trunk/; revision=3197
2005-06-17 13:52:24 +00:00

16 lines
456 B
Nix

{input, stdenv, fetchurl, pkgconfig, perl, glib, libxml2, GConf
, libbonobo, gnomemimedata, popt, perlXMLParser }:
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
];
patches = [./no-kerberos.patch];
}