nixpkgs/pkgs/desktops/gnome-2/platform/libgnomecups/default.nix

20 lines
522 B
Nix
Raw Normal View History

2021-01-16 18:21:50 -08:00
{ stdenv, fetchurl, pkg-config, gtk2, 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";
};
hardeningDisable = [ "format" ];
2015-12-22 17:59:47 -08:00
patches = [ ./glib.patch ./cups_1.6.patch ];
2021-01-16 18:21:50 -08:00
nativeBuildInputs = [ pkg-config ];
2019-03-03 13:30:31 -08:00
buildInputs = [ gtk2 gettext intltool libart_lgpl ];
propagatedBuildInputs = [ libxml2 ];
}