2012-02-16 15:05:41 +01: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";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ cpphs ];
|
2011-08-08 17:01:41 +02:00
|
|
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 20:21:52 +02:00
|
|
|
};
|
|
|
|
})
|