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

stdenv.mkDerivation {
  name = "pangoxsl-1.6.0.3";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/pangoxsl-1.6.0.3.tar.gz;
    md5 = "c98bad47ffa7de2e946a8e35d45e071c";
  };

  buildInputs = [
    pkgconfig
    glib
    pango
  ];
}