nixpkgs/pkgs/development/tools/parsing/alex/default.nix
Andres Löh d9b8b152d6 * added alex (lexer generator for Haskell)
svn path=/nixpkgs/trunk/; revision=9906
2007-12-11 13:38:48 +00:00

24 lines
435 B
Nix

{stdenv, fetchurl, ghc, perl}:
stdenv.mkDerivation {
name = "alex-2.1.0";
src = fetchurl {
url = http://www.haskell.org/alex/dist/2.1.0/alex-2.1.0.tar.gz;
sha1 = "37599b7be5249d639b3a5a3fdc61907dc4dad660";
};
buildInputs = [ghc perl];
configurePhase = "
ghc --make Setup.lhs
./Setup configure --prefix=\"\${out}\"
";
buildPhase = "
./Setup build
";
installPhase = "
./Setup install
";
}