summary refs log tree commit diff
path: root/pkgs/desktops/gnome/libgnomeprintui.nix
blob: 34f2b799498593177de22783ea3d191ffcaf4882 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{input, stdenv, fetchurl, perl, perlXMLParser, pkgconfig, gtk, libgnomeprint, libgnomecanvas, gnomeicontheme}:

stdenv.mkDerivation {
  inherit (input) name src;

  buildInputs = [
    perl perlXMLParser pkgconfig
    gtk libgnomeprint libgnomecanvas gnomeicontheme
  ];
}