2014-05-01 11:19:50 +01:00
|
|
|
{ cabal, aeson, attoparsec, dataDefault, filepath, ghcPaths, groom
|
|
|
|
, haskellNames, haskellPackages, haskellSrcExts, languageEcmascript
|
|
|
|
, mtl, optparseApplicative, safe, sourcemap, split, spoon, syb
|
|
|
|
, tasty, tastyHunit, tastyTh, text, transformers, uniplate
|
2014-01-29 10:45:06 +00:00
|
|
|
, unorderedContainers, utf8String, vector
|
2014-01-27 14:19:22 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "fay";
|
2014-05-01 11:19:50 +01:00
|
|
|
version = "0.20.0.0";
|
|
|
|
sha256 = "04rjmn280f87xlzv4h9as3cxnwaapfvpvq7zaig2rrw0l342pxy0";
|
2014-01-27 14:19:22 +00:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2014-05-01 11:19:50 +01:00
|
|
|
aeson attoparsec dataDefault filepath ghcPaths groom haskellNames
|
|
|
|
haskellPackages haskellSrcExts languageEcmascript mtl
|
|
|
|
optparseApplicative safe sourcemap split spoon syb tasty tastyHunit
|
|
|
|
tastyTh text transformers uniplate unorderedContainers utf8String
|
2014-01-27 14:19:22 +00:00
|
|
|
vector
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://fay-lang.org/";
|
|
|
|
description = "A compiler for Fay, a Haskell subset that compiles to JavaScript";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
|
|
};
|
|
|
|
})
|