3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/compilers/elm/elm.nix

26 lines
794 B
Nix
Raw Normal View History

2013-10-23 09:29:20 +01:00
{ cabal, aeson, aesonPretty, binary, blazeHtml, blazeMarkup
, cmdargs, filepath, HTF, indents, languageEcmascript, mtl, pandoc
2013-12-30 19:38:54 +00:00
, parsec, text, transformers, unionFind, unorderedContainers
2013-06-12 12:23:00 +01:00
}:
cabal.mkDerivation (self: {
pname = "Elm";
2013-12-30 19:38:54 +00:00
version = "0.10.1";
sha256 = "1y533vanhrxc14x304ig6q8ch6zih8yqgpfgw4h5vk5fpdmn09a2";
2013-06-12 12:23:00 +01:00
isLibrary = true;
isExecutable = true;
buildDepends = [
2013-10-23 09:29:20 +01:00
aeson aesonPretty binary blazeHtml blazeMarkup cmdargs filepath
indents languageEcmascript mtl pandoc parsec text transformers
2013-12-30 19:38:54 +00:00
unionFind unorderedContainers
2013-06-12 12:23:00 +01:00
];
2013-10-23 09:29:20 +01:00
testDepends = [ HTF ];
doCheck = false;
2013-06-12 12:23:00 +01:00
meta = {
homepage = "http://elm-lang.org";
description = "The Elm language module";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})