about summary refs log tree commit diff
path: root/pkgs/tools/typesetting/lhs2tex/default.nix
blob: f5a3d20f66dfd92ef6acb43a7328467e87333b4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, tetex, polytable, ghc}:

assert tetex == polytable.tetex;

stdenv.mkDerivation {
  name = "lhs2tex-1.10pre";
  builder = ./builder.sh;
  
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/lhs2tex-1.10pre.tar.bz2;
    md5 = "4fb875cdc0ba8daacc18b97f76aab4bf";
  };

  buildInputs = [tetex ghc];
  propagatedBuildInputs = [polytable];

  inherit tetex;
}