mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
22 lines
562 B
Nix
22 lines
562 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";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ glib pango libX11 ];
|
|
|
|
meta = {
|
|
description = "A compatibility library for pango>1.30.*";
|
|
|
|
homepage = https://www.pango.org/;
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|