nixpkgs/pkgs/development/tools/parsing/happy/happy-1.18.4.nix
Andres Löh 107d41f96c New Haskell Platform release.
svn path=/nixpkgs/trunk/; revision=15837
2009-06-03 08:44:41 +00:00

14 lines
363 B
Nix

{cabal, mtl, perl}:
cabal.mkDerivation (self : {
pname = "happy";
version = "1.18.4"; # Haskell Platform 2009.2.0.1
name = self.fname;
sha256 = "909bec4541a92d3765e74756f752514d2d03ec7a5d3e74c18268a57fe7ffa832";
extraBuildInputs = [perl];
propagatedBuildInputs = [mtl];
meta = {
description = "Happy is a parser generator for Haskell";
};
})