summary refs log tree commit diff
path: root/pkgs/development/libraries/pangoxsl/default.nix
blob: 38f1496062e6bee45cfec4cd8201e843d46b39dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, pkgconfig, glib, pango}:

stdenv.mkDerivation {
  name = "pangoxsl-1.6.0.3";
  src = fetchurl {
    url = mirror://sourceforge/pangopdf/pangoxsl-1.6.0.3.tar.gz;
    sha256 = "1wcd553nf4nwkrfrh765cyzwj9bsg7zpkndg2hjs8mhwgx04lm8n";
  };

  buildInputs = [
    pkgconfig
    glib
    pango
  ];

  meta = {
    platforms = stdenv.lib.platforms.unix;
  };
}