nixpkgs/pkgs/development/libraries/gnome/gnome-vfs/default.nix
Eelco Dolstra 91e4d833b7 * Use the bzip2 from stdenv.
svn path=/nixpkgs/trunk/; revision=3199
2005-06-17 17:07:03 +00:00

17 lines
482 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;
builder = ./builder.sh;
buildInputs = [
pkgconfig perl glib libxml2 GConf libbonobo
gnomemimedata popt perlXMLParser
];
patches = [./no-kerberos.patch];
}