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

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 = [ gtk gettext intltool libgnomecanvas libgnomeprint gnomeicontheme];
}