summary refs log tree commit diff
path: root/pkgs/development/libraries/pangox-compat/default.nix
blob: 2d6b678f6570f73c0820a9903c543e588d170ade (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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;
  };
}