mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
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
|
|
];
|
|
}
|