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

33 lines
1.1 KiB
Nix
Raw Normal View History

2013-10-23 09:29:20 +01:00
{ cabal, aeson, aesonPretty, binary, blazeHtml, blazeMarkup
2014-01-25 15:52:41 +00:00
, cmdargs, filemanip, filepath, HUnit, indents, languageEcmascript
, mtl, pandoc, parsec, QuickCheck, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2, text, transformers
, unionFind, unorderedContainers
2013-06-12 12:23:00 +01:00
}:
cabal.mkDerivation (self: {
pname = "Elm";
2014-01-25 15:52:41 +00:00
version = "0.11";
sha256 = "1rg1dbd2ag63in6069p6v88h1yx0snap2gdhz81lk9l66qns3f4s";
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
];
2014-01-25 15:52:41 +00:00
testDepends = [
aeson binary blazeHtml blazeMarkup cmdargs filemanip filepath HUnit
indents languageEcmascript mtl pandoc parsec QuickCheck
testFramework testFrameworkHunit testFrameworkQuickcheck2 text
transformers unionFind unorderedContainers
];
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;
};
})