nixpkgs/pkgs/desktops/gnome-2.28/platform/libgnomeprint/default.nix
Lluís Batlle i Rossell 6f462d2c7c Adding (quite blindly) some gnome packages to get gnucash built.
svn path=/nixpkgs/trunk/; revision=19638
2010-01-24 21:32:09 +00:00

15 lines
471 B
Nix

{stdenv, fetchurl, pkgconfig, gtk, gettext, libxml2, intltool, libart_lgpl, libgnomecups, bison,
flex }:
stdenv.mkDerivation {
name = "libgnomeprint-2.11.1";
src = fetchurl {
url = mirror://gnome/sources/libgnomeprint/2.18/libgnomeprint-2.18.6.tar.bz2;
sha256 = "15c00ya2mx0x4mh8lyy3xg9dd66z5yjnax74bqx99zd90sar10fg";
};
buildInputs = [ pkgconfig gtk gettext intltool libart_lgpl libgnomecups bison flex ];
propagatedBuildInputs = [ libxml2 ];
}