2013-10-23 09:29:07 +01:00
|
|
|
{ cabal, dataDefaultClass, Diff, filepath, HUnit, mtl, parsec
|
|
|
|
, QuickCheck, testFramework, testFrameworkHunit
|
2014-03-19 10:45:22 +00:00
|
|
|
, testFrameworkQuickcheck2, testingFeat, uniplate, wlPprint
|
2013-10-23 09:29:07 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "language-ecmascript";
|
2014-04-04 22:23:17 +01:00
|
|
|
version = "0.16.1";
|
|
|
|
sha256 = "0pqb1r60jjmiwk9giaxnrp9a07h4a97kp6g0nznwpdy32x849gx3";
|
2013-10-23 09:29:07 +01:00
|
|
|
buildDepends = [
|
2014-03-19 10:45:22 +00:00
|
|
|
dataDefaultClass Diff mtl parsec QuickCheck testingFeat uniplate
|
|
|
|
wlPprint
|
2013-10-23 09:29:07 +01:00
|
|
|
];
|
|
|
|
testDepends = [
|
|
|
|
dataDefaultClass Diff filepath HUnit mtl parsec QuickCheck
|
2013-11-21 15:28:11 +00:00
|
|
|
testFramework testFrameworkHunit testFrameworkQuickcheck2 uniplate
|
|
|
|
wlPprint
|
2013-10-23 09:29:07 +01:00
|
|
|
];
|
2013-11-18 11:14:16 +00:00
|
|
|
jailbreak = true;
|
|
|
|
doCheck = false;
|
2013-10-23 09:29:07 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/jswebtools/language-ecmascript";
|
|
|
|
description = "JavaScript parser and pretty-printer library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|