2011-08-15 00:52:05 +02:00
|
|
|
{ cabal, cpphs, happy }:
|
2009-04-20 02:18:51 +02:00
|
|
|
|
2011-08-10 02:35:08 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-20 02:18:51 +02:00
|
|
|
pname = "haskell-src-exts";
|
2011-03-12 18:28:15 +01:00
|
|
|
version = "1.9.6";
|
|
|
|
sha256 = "1bdbjwhzms962ncwiszp82a8m6jkgz6d9cns5585kipy9n224d3h";
|
2011-08-10 02:35:08 +02:00
|
|
|
buildDepends = [ cpphs ];
|
|
|
|
buildTools = [ happy ];
|
2009-04-20 02:18:51 +02:00
|
|
|
meta = {
|
2011-08-10 02:35:08 +02:00
|
|
|
homepage = "http://code.haskell.org/haskell-src-exts";
|
2009-04-20 02:18:51 +02:00
|
|
|
description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer";
|
2011-08-10 02:35:08 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-04-20 02:18:51 +02:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|