summary refs log tree commit diff
path: root/pkgs/desktops/gnome-2/platform/libgnomecups/default.nix
blob: 9a0afd1275d0bffad59783dfe7415e15f1ca0594 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl, pkgconfig, gtk, gettext, libxml2, intltool, libart_lgpl }:

stdenv.mkDerivation rec {
  name = "libgnomecups-0.2.3";

  src = fetchurl {
    url = "mirror://gnome/sources/libgnomecups/0.2/${name}.tar.bz2";
    sha256 = "0a8xdaxzz2wc0n1fjcav65093gixzyac3948l8cxx1mk884yhc71";
  };

  patches = [ ./glib.patch ];

  buildInputs = [ pkgconfig gtk gettext intltool libart_lgpl ];

  propagatedBuildInputs = [ libxml2 ];
}