summary refs log tree commit diff
path: root/pkgs/tools/typesetting/hevea/default.nix
blob: 32fbda84becd8e0f183682a6e0b867f7b738303e (plain) (blame)
1
2
3
4
5
6
7
8
9
{stdenv, fetchurl, ocaml}: stdenv.mkDerivation {
  name = "hevea-1.07";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/hevea-1.07.tar.gz;
    md5 = "561d7a2c10ea9e6a5b352c24d9b65998";
  };
  buildInputs = [ocaml];
}