nixpkgs/pkgs/development/libraries/haskell/fay/default.nix
2014-05-01 21:57:03 +02:00

29 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.0";
sha256 = "04rjmn280f87xlzv4h9as3cxnwaapfvpvq7zaig2rrw0l342pxy0";
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 ];
};
})