summary refs log tree commit diff
path: root/pkgs/development/compilers/elm
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-01-25 16:52:41 +0100
committerPeter Simons <simons@cryp.to>2014-01-26 00:02:33 +0100
commitea288d47bd3dbbee3932e6555e1354c053a9611a (patch)
treecde32401932e1312ebe5443b8cec2eeb22dbd1ee /pkgs/development/compilers/elm
parente2a858379d194c63a8acdd700bfad6faa1e541ea (diff)
downloadnixlib-ea288d47bd3dbbee3932e6555e1354c053a9611a.tar
nixlib-ea288d47bd3dbbee3932e6555e1354c053a9611a.tar.gz
nixlib-ea288d47bd3dbbee3932e6555e1354c053a9611a.tar.bz2
nixlib-ea288d47bd3dbbee3932e6555e1354c053a9611a.tar.lz
nixlib-ea288d47bd3dbbee3932e6555e1354c053a9611a.tar.xz
nixlib-ea288d47bd3dbbee3932e6555e1354c053a9611a.tar.zst
nixlib-ea288d47bd3dbbee3932e6555e1354c053a9611a.zip
haskell-Elm: update to version 0.11
Diffstat (limited to 'pkgs/development/compilers/elm')
-rw-r--r--pkgs/development/compilers/elm/elm.nix17
1 files changed, 12 insertions, 5 deletions
diff --git a/pkgs/development/compilers/elm/elm.nix b/pkgs/development/compilers/elm/elm.nix
index 0f3c4d2ef643..00c5e2907c69 100644
--- a/pkgs/development/compilers/elm/elm.nix
+++ b/pkgs/development/compilers/elm/elm.nix
@@ -1,12 +1,14 @@
 { cabal, aeson, aesonPretty, binary, blazeHtml, blazeMarkup
-, cmdargs, filepath, HTF, indents, languageEcmascript, mtl, pandoc
-, parsec, text, transformers, unionFind, unorderedContainers
+, cmdargs, filemanip, filepath, HUnit, indents, languageEcmascript
+, mtl, pandoc, parsec, QuickCheck, testFramework
+, testFrameworkHunit, testFrameworkQuickcheck2, text, transformers
+, unionFind, unorderedContainers
 }:
 
 cabal.mkDerivation (self: {
   pname = "Elm";
-  version = "0.10.1";
-  sha256 = "1y533vanhrxc14x304ig6q8ch6zih8yqgpfgw4h5vk5fpdmn09a2";
+  version = "0.11";
+  sha256 = "1rg1dbd2ag63in6069p6v88h1yx0snap2gdhz81lk9l66qns3f4s";
   isLibrary = true;
   isExecutable = true;
   buildDepends = [
@@ -14,7 +16,12 @@ cabal.mkDerivation (self: {
     indents languageEcmascript mtl pandoc parsec text transformers
     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;
   meta = {
     homepage = "http://elm-lang.org";