summary refs log tree commit diff
path: root/pkgs/development/libraries/gnome/libgnomeprintui/default.nix
blob: 5ae7a59c2062d54e280770b841730cca134930c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{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";
}