haskell-Elm: update to version 0.11
This commit is contained in:
parent
e2a858379d
commit
ea288d47bd
|
@ -1,12 +1,14 @@
|
||||||
{ cabal, aeson, aesonPretty, binary, blazeHtml, blazeMarkup
|
{ cabal, aeson, aesonPretty, binary, blazeHtml, blazeMarkup
|
||||||
, cmdargs, filepath, HTF, indents, languageEcmascript, mtl, pandoc
|
, cmdargs, filemanip, filepath, HUnit, indents, languageEcmascript
|
||||||
, parsec, text, transformers, unionFind, unorderedContainers
|
, mtl, pandoc, parsec, QuickCheck, testFramework
|
||||||
|
, testFrameworkHunit, testFrameworkQuickcheck2, text, transformers
|
||||||
|
, unionFind, unorderedContainers
|
||||||
}:
|
}:
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "Elm";
|
pname = "Elm";
|
||||||
version = "0.10.1";
|
version = "0.11";
|
||||||
sha256 = "1y533vanhrxc14x304ig6q8ch6zih8yqgpfgw4h5vk5fpdmn09a2";
|
sha256 = "1rg1dbd2ag63in6069p6v88h1yx0snap2gdhz81lk9l66qns3f4s";
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
|
@ -14,7 +16,12 @@ cabal.mkDerivation (self: {
|
||||||
indents languageEcmascript mtl pandoc parsec text transformers
|
indents languageEcmascript mtl pandoc parsec text transformers
|
||||||
unionFind unorderedContainers
|
unionFind unorderedContainers
|
||||||
];
|
];
|
||||||
testDepends = [ HTF ];
|
testDepends = [
|
||||||
|
aeson binary blazeHtml blazeMarkup cmdargs filemanip filepath HUnit
|
||||||
|
indents languageEcmascript mtl pandoc parsec QuickCheck
|
||||||
|
testFramework testFrameworkHunit testFrameworkQuickcheck2 text
|
||||||
|
transformers unionFind unorderedContainers
|
||||||
|
];
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://elm-lang.org";
|
homepage = "http://elm-lang.org";
|
||||||
|
|
Loading…
Reference in New Issue