2014-04-28 19:17:32 +02:00
|
|
|
{ cabal, cpphs, filemanip, filepath, happy, mtl, smallcheck, syb
|
|
|
|
, tasty, tastyGolden, tastySmallcheck
|
2013-08-21 11:52:57 +02:00
|
|
|
}:
|
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";
|
2014-04-28 19:17:32 +02:00
|
|
|
version = "1.15.0.1";
|
|
|
|
sha256 = "0xp5i06c478vn5m504ax5dfa7p5zc0kflbdkm2ijdzc779lpbx45";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ cpphs ];
|
2013-08-21 11:52:57 +02:00
|
|
|
testDepends = [
|
2014-04-28 19:17:32 +02:00
|
|
|
filemanip filepath mtl smallcheck syb tasty tastyGolden
|
|
|
|
tastySmallcheck
|
2013-08-21 11:52:57 +02:00
|
|
|
];
|
2011-08-08 17:01:41 +02:00
|
|
|
buildTools = [ happy ];
|
2013-02-24 23:10:17 +01:00
|
|
|
doCheck = false;
|
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
|
|
|
};
|
|
|
|
})
|