mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
20 lines
491 B
Nix
20 lines
491 B
Nix
{ 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 = stdenv.lib.licenses.lgpl2Plus;
|
|
};
|
|
}
|