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 ];
|
2013-08-12 10:49:18 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
})
|