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