19d7e43cf3
svn path=/nixpkgs/trunk/; revision=2344
15 lines
430 B
Nix
15 lines
430 B
Nix
{ input, stdenv, fetchurl, perl, perlXMLParser, pkgconfig
|
|
, gtk, libxml2, libgnomeprint, gnomevfs, libbonobo, gconf
|
|
, libgnomeprintui, libgnomecanvas
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
buildInputs = [
|
|
perl perlXMLParser pkgconfig gnomevfs
|
|
libbonobo gconf libgnomeprintui libgnomecanvas
|
|
];
|
|
propagatedBuildInputs = [gtk libxml2 libgnomeprint];
|
|
PERL5LIB = perlXMLParser ~ "/lib/site_perl"; # !!!
|
|
}
|