2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, mtl, perl }:
|
2010-07-17 06:23:48 -07:00
|
|
|
|
2011-08-09 17:35:08 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-17 06:23:48 -07:00
|
|
|
pname = "happy";
|
2011-08-09 17:35:08 -07:00
|
|
|
version = "1.18.5";
|
2010-07-17 06:23:48 -07:00
|
|
|
sha256 = "91e1c29ac42bc5cabcac2c2e28e693fc59fbdf30636e5c52cb51b779a74d755e";
|
2011-08-09 17:35:08 -07:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ mtl ];
|
2011-08-09 17:35:08 -07:00
|
|
|
buildTools = [ perl ];
|
2010-07-17 06:23:48 -07:00
|
|
|
meta = {
|
2011-08-09 17:35:08 -07:00
|
|
|
homepage = "http://www.haskell.org/happy/";
|
2010-07-17 06:23:48 -07:00
|
|
|
description = "Happy is a parser generator for Haskell";
|
2011-08-09 17:35:08 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-17 06:23:48 -07:00
|
|
|
};
|
|
|
|
})
|