c6db5c80f9
svn path=/nixpkgs/trunk/; revision=8190
14 lines
307 B
Nix
14 lines
307 B
Nix
{input, stdenv, fetchurl, perl, perlXMLParser, pkgconfig, gtk, libgnomeprint, libgnomecanvas, gnomeicontheme}:
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
|
|
buildInputs = [
|
|
perl perlXMLParser pkgconfig gtk libgnomecanvas gnomeicontheme
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
libgnomeprint
|
|
];
|
|
}
|