nixpkgs/pkgs/tools/typesetting/lhs2tex/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

20 lines
386 B
Nix

{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;
}