nixpkgs/pkgs/development/compilers/elm/elm.nix

26 lines
770 B
Nix
Raw Normal View History

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