mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
13 lines
327 B
Nix
13 lines
327 B
Nix
|
{input, stdenv, fetchurl, perl, perlXMLParser, pkgconfig, gtk, libgnomeprint, libgnomecanvas, gnomeicontheme}:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
inherit (input) name src;
|
||
|
|
||
|
buildInputs = [
|
||
|
perl perlXMLParser pkgconfig
|
||
|
gtk libgnomeprint libgnomecanvas gnomeicontheme
|
||
|
];
|
||
|
|
||
|
PERL5LIB = perlXMLParser ~ "/lib/site_perl";
|
||
|
}
|