2013-08-21 11:52:57 +02:00
|
|
|
{ cabal, cpphs, filepath, happy, smallcheck, tasty, tastyHunit
|
|
|
|
, tastySmallcheck
|
|
|
|
}:
|
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";
|
2013-08-21 11:52:57 +02:00
|
|
|
version = "1.14.0";
|
|
|
|
sha256 = "070khsw56xwyrclamv5wckj9na2xbzibv702xx52ik2wbs21dr0d";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ cpphs ];
|
2013-08-21 11:52:57 +02:00
|
|
|
testDepends = [
|
|
|
|
filepath smallcheck tasty tastyHunit tastySmallcheck
|
|
|
|
];
|
2011-08-08 17:01:41 +02:00
|
|
|
buildTools = [ happy ];
|
2013-02-24 23:10:17 +01:00
|
|
|
doCheck = false;
|
2013-12-04 00:15:24 +01:00
|
|
|
preConfigure = "runhaskell Setup.hs clean";
|
2011-08-07 20:21:52 +02:00
|
|
|
meta = {
|
2013-08-21 11:52:57 +02:00
|
|
|
homepage = "https://github.com/haskell-suite/haskell-src-exts";
|
2011-08-07 20:21:52 +02:00
|
|
|
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;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 20:21:52 +02:00
|
|
|
};
|
|
|
|
})
|