TeXLive: update to 2012 snapshot from Debian

This commit is contained in:
Michael Raskin
2012-07-13 18:18:52 +04:00
parent a126bf9ae4
commit f2a77f5d9d
6 changed files with 90 additions and 29 deletions

View File

@@ -0,0 +1,20 @@
{ stdenv, fetchurl, pkgconfig, freetype, libXft, pango, fontconfig }:
stdenv.mkDerivation rec {
version = "2.3.1";
name = "silgraphite-2.3.1";
src = fetchurl {
url = "mirror://sourceforge/silgraphite/silgraphite/${version}/${name}.tar.gz";
sha256 = "9b07c6e91108b1fa87411af4a57e25522784cfea0deb79b34ced608444f2ed65";
};
buildInputs = [pkgconfig freetype libXft pango fontconfig];
NIX_CFLAGS_COMPILE = "-I${freetype}/include/freetype2";
meta = {
description = ''An advanced font engine'';
maintainers = with stdenv.lib.maintainers; [raskin];
platforms = with stdenv.lib.maintainers; linux;
};
}