nixpkgs/pkgs/desktops/gnome-2.28/platform/libgnomecups/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

14 lines
414 B
Nix

{stdenv, fetchurl, pkgconfig, gtk, gettext, libxml2, intltool, libart_lgpl }:
stdenv.mkDerivation {
name = "libgnomecups-0.2.3";
src = fetchurl {
url = mirror://gnome/sources/libgnomecups/0.2/libgnomecups-0.2.3.tar.bz2;
sha256 = "0a8xdaxzz2wc0n1fjcav65093gixzyac3948l8cxx1mk884yhc71";
};
buildInputs = [ pkgconfig gtk gettext intltool libart_lgpl ];
propagatedBuildInputs = [ libxml2 ];
}