mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
add pangox-compat
It's needed for some packages to work with pango>1.30.*
This commit is contained in:
parent
d6191d63ba
commit
9cd47a60a2
2 changed files with 21 additions and 0 deletions
19
pkgs/development/libraries/pangox-compat/default.nix
Normal file
19
pkgs/development/libraries/pangox-compat/default.nix
Normal 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+";
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue