mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
719217d77a
* added lazylist and polytable (both tetex packages) * added lhs2tex ebuild, depending on the two above svn path=/nixpkgs/trunk/; revision=4609
18 lines
352 B
Nix
18 lines
352 B
Nix
{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";
|
|
};
|
|
|
|
propagatedBuildInputs = [tetex lazylist];
|
|
|
|
inherit tetex;
|
|
}
|