nixpkgs/pkgs/development/compilers/abc/polyglot/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

14 lines
303 B
Nix

{stdenv, fetchurl, apacheAnt}:
stdenv.mkDerivation {
name = "polyglot-dev-20060422015512";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/polyglot-dev-20060422015512.tar.gz;
md5 = "6972fe537b4edd41872ed1cf24d24b50";
};
buildInputs = [apacheAnt];
}