parent
90d9f8ec18
commit
58082f0acb
|
@ -1,16 +1,16 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, gtk, gettext, libxml2, intltool, libart_lgpl }:
|
{ stdenv, fetchurl, pkgconfig, gtk, gettext, libxml2, intltool, libart_lgpl }:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
name = "libgnomecups-0.2.3";
|
name = "libgnomecups-0.2.3";
|
||||||
in
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
inherit name;
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/libgnomecups/0.2/${name}.tar.bz2";
|
url = "mirror://gnome/sources/libgnomecups/0.2/${name}.tar.bz2";
|
||||||
sha256 = "0a8xdaxzz2wc0n1fjcav65093gixzyac3948l8cxx1mk884yhc71";
|
sha256 = "0a8xdaxzz2wc0n1fjcav65093gixzyac3948l8cxx1mk884yhc71";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [ ./glib.patch ];
|
||||||
|
|
||||||
buildInputs = [ pkgconfig gtk gettext intltool libart_lgpl ];
|
buildInputs = [ pkgconfig gtk gettext intltool libart_lgpl ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ libxml2 ];
|
propagatedBuildInputs = [ libxml2 ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,8 @@
|
||||||
{stdenv, fetchurl, pkgconfig, gtk, gettext, libxml2, intltool, libart_lgpl, libgnomecups, bison,
|
{ stdenv, fetchurl, pkgconfig, gtk, gettext, libxml2, intltool, libart_lgpl
|
||||||
flex }:
|
, libgnomecups, bison, flex }:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
name = "libgnomeprint-2.18.8";
|
name = "libgnomeprint-2.18.8";
|
||||||
in
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
inherit name;
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/libgnomeprint/2.18/${name}.tar.bz2";
|
url = "mirror://gnome/sources/libgnomeprint/2.18/${name}.tar.bz2";
|
||||||
|
@ -15,5 +12,6 @@ stdenv.mkDerivation {
|
||||||
patches = [ ./bug653388.patch ];
|
patches = [ ./bug653388.patch ];
|
||||||
|
|
||||||
buildInputs = [ pkgconfig gtk gettext intltool libart_lgpl libgnomecups bison flex ];
|
buildInputs = [ pkgconfig gtk gettext intltool libart_lgpl libgnomecups bison flex ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ libxml2 ];
|
propagatedBuildInputs = [ libxml2 ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue