2013-10-23 09:29:07 +01:00
|
|
|
{ cabal, dataDefaultClass, Diff, filepath, HUnit, mtl, parsec
|
|
|
|
, QuickCheck, testFramework, testFrameworkHunit
|
2013-11-21 15:28:11 +00:00
|
|
|
, testFrameworkQuickcheck2, uniplate, wlPprint
|
2013-10-23 09:29:07 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "language-ecmascript";
|
2013-12-09 12:03:21 +00:00
|
|
|
version = "0.15.4";
|
|
|
|
sha256 = "1drivy75lvrwjx7irdbnnqp7y6mbzbm2pbxy7zzc1nfln6g3k9x7";
|
2013-10-23 09:29:07 +01:00
|
|
|
buildDepends = [
|
2013-11-21 15:28:11 +00:00
|
|
|
dataDefaultClass Diff mtl parsec QuickCheck 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;
|
|
|
|
};
|
|
|
|
})
|