1442e8ec22
svn path=/nixpkgs/trunk/; revision=6711
16 lines
294 B
Nix
16 lines
294 B
Nix
{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
|
|
];
|
|
}
|