nixpkgs/pkgs/misc/tex/polytable/default.nix
Eelco Dolstra c9c70b8d75 * Don't propagate the teTeX dependency.
svn path=/nixpkgs/trunk/; revision=8262
2007-03-12 12:56:06 +00:00

19 lines
372 B
Nix

{stdenv, fetchurl, tetex, lazylist}:
assert tetex == lazylist.tetex;
stdenv.mkDerivation {
name = "polytable-0.8.2";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/polytable-0.8.2.tar.gz;
md5 = "c59edf035ae6e19b64b1ae920fea28e7";
};
buildInputs = [tetex];
propagatedBuildInputs = [lazylist];
inherit tetex;
}