* added Ralf Hinze's "frown" parser generator for Haskell

svn path=/nixpkgs/trunk/; revision=8657
This commit is contained in:
Andres Löh 2007-05-09 13:10:31 +00:00
parent e3f701c311
commit 4c05f557a8
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,7 @@
source $stdenv/setup
makeFlags="-e PREFIX=\"$out\""
ensureDir $out/bin
genericBuild

View File

@ -0,0 +1,11 @@
{stdenv, fetchurl, ghc}:
stdenv.mkDerivation {
name = "frown-0.6.1";
src = fetchurl {
url = http://www.informatik.uni-bonn.de/~ralf/frown/frown-0.6.1.tar.gz;
md5 = "b6fe9a8bf029c2a7c31b574be05816cf";
};
builder = ./builder.sh;
buildInputs = [ghc];
}

View File

@ -1030,6 +1030,10 @@ rec {
inherit fetchurl stdenv yacc;
};
frown = import ../development/tools/parsing/frown {
inherit fetchurl stdenv ghc;
};
m4 = gnum4;
gnum4 = import ../development/tools/misc/gnum4 {