2006-08-12 00:26:55 +02:00
|
|
|
{ input, stdenv, fetchurl, pkgconfig, perl, glib, libxml2, GConf
|
|
|
|
, libbonobo, gnomemimedata, popt, perlXMLParser, gettext, bzip2
|
|
|
|
}:
|
2004-01-21 10:34:19 +01:00
|
|
|
|
2004-03-29 12:25:25 +02:00
|
|
|
assert pkgconfig != null && perl != null && glib != null
|
2005-06-17 15:52:24 +02:00
|
|
|
&& libxml2 != null && GConf != null && libbonobo != null
|
|
|
|
&& gnomemimedata != null;
|
2004-01-21 10:34:19 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2005-02-27 00:45:19 +01:00
|
|
|
inherit (input) name src;
|
2004-09-21 17:26:42 +02:00
|
|
|
buildInputs = [
|
2005-06-17 15:52:24 +02:00
|
|
|
pkgconfig perl glib libxml2 GConf libbonobo
|
2006-08-12 00:26:55 +02:00
|
|
|
gnomemimedata popt perlXMLParser gettext bzip2
|
2004-09-21 17:26:42 +02:00
|
|
|
];
|
2005-03-02 13:02:13 +01:00
|
|
|
patches = [./no-kerberos.patch];
|
2004-01-21 10:34:19 +01:00
|
|
|
}
|