Added Happy parser generator and HaRP: Haskell Regular Patterns

svn path=/nixpkgs/trunk/; revision=1043
This commit is contained in:
Martin Bravenboer
2004-06-09 14:23:05 +00:00
parent 7226e94466
commit 3d90f961b4
4 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl, perl, ghc}:
stdenv.mkDerivation {
name = "happy-1.14";
src = fetchurl {
url = http://www.haskell.org/happy/dist/1.14/happy-1.14-src.tar.gz;
md5 = "501b5b63533b2e2838de18085e8c4492";
};
buildInputs = [ghc perl];
}