28 lines
1.1 KiB
Nix
28 lines
1.1 KiB
Nix
{ cabal, 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, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "fay";
|
|
version = "0.20.0.4";
|
|
sha256 = "0cxcd4nxnq8nl03xgxa1nb0932hq4dz1lxpp3gqqs5k5wvs62303";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
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
|
|
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 ];
|
|
};
|
|
})
|