summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/libgnomeprintui/default.nix
blob: 215c9eb3e5e70cd0f4326e8f828308306f0ac416 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, pkgconfig, gtk2, gettext, intltool, libgnomecanvas, libgnomeprint, gnome_icon_theme}:

stdenv.mkDerivation {
  name = "libgnomeprintui-2.18.6";

  src = fetchurl {
    url = mirror://gnome/sources/libgnomeprintui/2.18/libgnomeprintui-2.18.6.tar.bz2;
    sha256 = "0spl8vinb5n6n1krnfnr61dwaxidg67h8j94z9p59k2xdsvfashm";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ gtk2 gettext intltool libgnomecanvas libgnomeprint gnome_icon_theme];
}