nixpkgs/pkgs/development/compilers/abc/jasmin/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

15 lines
327 B
Nix

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