2006-01-27 21:51:41 +01:00
|
|
|
{stdenv, fetchurl, tetex}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "lazylist-1.0a";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2007-08-24 14:32:36 +02:00
|
|
|
url = http://www.iai.uni-bonn.de/~loeh/lhs2tex/lazylist-1.0a.tar.bz2;
|
2006-01-27 21:51:41 +01:00
|
|
|
md5 = "8ef357df5845bd8d6075fca6e1f214ab";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [tetex];
|
|
|
|
|
|
|
|
inherit tetex;
|
|
|
|
}
|