1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 15:41:40 +00:00
nixpkgs/pkgs/desktops/gnome/libgnomeprintui.nix
Eelco Dolstra c6db5c80f9 * More Gnome stuff.
svn path=/nixpkgs/trunk/; revision=8190
2007-03-05 18:52:31 +00:00

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
];
}