add pangox-compat

It's needed for some packages to work with pango>1.30.*
This commit is contained in:
Vladimír Čunát 2013-02-02 14:38:17 +01:00
parent d6191d63ba
commit 9cd47a60a2
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, fetchurl, pkgconfig, glib, pango, libX11 }:
stdenv.mkDerivation rec {
name = "pangox-compat-0.0.2";
src = fetchurl {
url = "mirror://gnome/sources/pangox-compat/0.0/${name}.tar.xz";
sha256 = "0ip0ziys6mrqqmz4n71ays0kf5cs1xflj1gfpvs4fgy2nsrr482m";
};
buildInputs = [ pkgconfig glib pango libX11 ];
meta = {
description = "A compatibility library for pango>1.30.*";
homepage = http://www.pango.org/;
license = "LGPLv2+";
};
}

View file

@ -3953,6 +3953,8 @@ let
pangomm = callPackage ../development/libraries/pangomm/2.28.x.nix { };
pangox_compat = callPackage ../development/libraries/pangox-compat { };
gdk_pixbuf = callPackage ../development/libraries/gdk-pixbuf { };
gtk2 = callPackage ../development/libraries/gtk+/2.x.nix { };