2014-04-28 21:17:32 +04:00
|
|
|
{ cabal, cpphs, filemanip, filepath, happy, mtl, smallcheck, syb
|
|
|
|
, tasty, tastyGolden, tastySmallcheck
|
2013-08-21 13:52:57 +04:00
|
|
|
}:
|
2011-08-07 22:21:52 +04:00
|
|
|
|
2011-08-08 19:01:41 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 22:21:52 +04:00
|
|
|
pname = "haskell-src-exts";
|
2014-04-28 21:17:32 +04:00
|
|
|
version = "1.15.0.1";
|
|
|
|
sha256 = "0xp5i06c478vn5m504ax5dfa7p5zc0kflbdkm2ijdzc779lpbx45";
|
2012-02-16 18:05:41 +04:00
|
|
|
buildDepends = [ cpphs ];
|
2013-08-21 13:52:57 +04:00
|
|
|
testDepends = [
|
2014-04-28 21:17:32 +04:00
|
|
|
filemanip filepath mtl smallcheck syb tasty tastyGolden
|
|
|
|
tastySmallcheck
|
2013-08-21 13:52:57 +04:00
|
|
|
];
|
2011-08-08 19:01:41 +04:00
|
|
|
buildTools = [ happy ];
|
2013-02-25 02:10:17 +04:00
|
|
|
doCheck = false;
|
2011-08-07 22:21:52 +04:00
|
|
|
meta = {
|
2013-08-21 13:52:57 +04:00
|
|
|
homepage = "https://github.com/haskell-suite/haskell-src-exts";
|
2011-08-07 22:21:52 +04:00
|
|
|
description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 13:54:50 +04:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 02:36:36 +04:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 22:21:52 +04:00
|
|
|
};
|
|
|
|
})
|