summary refs log tree commit diff
path: root/pkgs/development/libraries/gnome/gnome-vfs/default.nix
blob: 75f9ed77a85d4557b5ae9ff8af2918058315c46f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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];
}