2011-08-15 00:52:05 +02:00
|
|
|
{ cabal, cpphs, happy }:
|
2011-08-07 20:21:52 +02:00
|
|
|
|
2011-08-08 17:01:41 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 20:21:52 +02:00
|
|
|
pname = "haskell-src-exts";
|
|
|
|
version = "1.11.1";
|
|
|
|
sha256 = "1jqf8l81zw7x5ryf8h2n0b2636yhxkfp3j4ndbqw6hc7i5q581m6";
|
2011-08-08 17:01:41 +02:00
|
|
|
buildDepends = [ cpphs ];
|
|
|
|
buildTools = [ happy ];
|
2011-08-07 20:21:52 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://code.haskell.org/haskell-src-exts";
|
|
|
|
description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-08 11:47:38 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-10 02:35:08 +02:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-08 11:47:38 +02:00
|
|
|
];
|
2011-08-07 20:21:52 +02:00
|
|
|
};
|
|
|
|
})
|