3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
23 lines
535 B
Nix
23 lines
535 B
Nix
{stdenv, fetchurl, flex, bison, zlib, libpng, ncurses, ed}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "tetex-3.0";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/tetex-src-3.0.tar.gz;
|
|
md5 = "944a4641e79e61043fdaf8f38ecbb4b3";
|
|
};
|
|
|
|
texmf = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/tetex-texmf-3.0.tar.gz;
|
|
md5 = "11aa15c8d3e28ee7815e0d5fcdf43fd4";
|
|
};
|
|
|
|
buildInputs = [flex bison zlib libpng ncurses ed];
|
|
|
|
patches = [./environment.patch];
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
}
|