summary refs log tree commit diff
path: root/pkgs/misc/tex/lazylist/default.nix
blob: 19637793b00d6dde2cb5f735ced7e97c9ffc9cef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl, tetex}:

stdenv.mkDerivation {
  name = "lazylist-1.0a";
  builder = ./builder.sh;
  
  src = fetchurl {
    url = http://www.iai.uni-bonn.de/~loeh/lhs2tex/lazylist-1.0a.tar.bz2;
    md5 = "8ef357df5845bd8d6075fca6e1f214ab";
  };

  buildInputs = [tetex];

  inherit tetex;
}