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

#assert tetex == lazylist.tetex;

stdenv.mkDerivation {
  name = "polytable-0.8.2";
  builder = ./builder.sh;
  
  src = fetchurl {
    url = http://www.iai.uni-bonn.de/~loeh/polytable-0.8.2.tar.gz;
    md5 = "c59edf035ae6e19b64b1ae920fea28e7";
  };

  buildInputs = [tetex];
  propagatedBuildInputs = [lazylist];
  propagatedUserEnvPackages = [lazylist];

  inherit tetex;
}