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

assert tetex == polytable.tetex;

stdenv.mkDerivation {
  name = "lhs2tex-1.12";
  builder = ./builder.sh;
  
  src = fetchurl {
    url = http://www.informatik.uni-bonn.de/~loeh/lhs2tex/lhs2tex-1.12.tar.bz2;
    md5 = "1bc982e96f19201aaf1c39c1d4b5e358";
  };

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

  inherit tetex;
}