summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-10-23 10:29:20 +0200
committerPeter Simons <simons@cryp.to>2013-10-24 23:29:54 +0200
commitcf08417baaf797edabdbaab77952c7e34c360d68 (patch)
tree4c47d627a75f554467f5d1d66072ecd6112eed2b /pkgs
parenta773bf439881585d2087564d0897ecc656f12cdf (diff)
downloadnixlib-cf08417baaf797edabdbaab77952c7e34c360d68.tar
nixlib-cf08417baaf797edabdbaab77952c7e34c360d68.tar.gz
nixlib-cf08417baaf797edabdbaab77952c7e34c360d68.tar.bz2
nixlib-cf08417baaf797edabdbaab77952c7e34c360d68.tar.lz
nixlib-cf08417baaf797edabdbaab77952c7e34c360d68.tar.xz
nixlib-cf08417baaf797edabdbaab77952c7e34c360d68.tar.zst
nixlib-cf08417baaf797edabdbaab77952c7e34c360d68.zip
haskell-Elm: update to version 0.10
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/elm/elm.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/development/compilers/elm/elm.nix b/pkgs/development/compilers/elm/elm.nix
index 2c851ebbf3f6..17b173a33348 100644
--- a/pkgs/development/compilers/elm/elm.nix
+++ b/pkgs/development/compilers/elm/elm.nix
@@ -1,17 +1,20 @@
-{ cabal, binary, blazeHtml, blazeMarkup, cmdargs, filepath, hjsmin
-, indents, mtl, pandoc, parsec, transformers, unionFind, uniplate
+{ cabal, aeson, aesonPretty, binary, blazeHtml, blazeMarkup
+, cmdargs, filepath, HTF, indents, languageEcmascript, mtl, pandoc
+, parsec, text, transformers, unionFind, uniplate
 }:
 
 cabal.mkDerivation (self: {
   pname = "Elm";
-  version = "0.9.0.2";
-  sha256 = "0yr395wsj0spi6h9d6lm5hvdryybpf8i1qpv4gz9dk0bwlyc8iwh";
+  version = "0.10";
+  sha256 = "0wwda9w9r3qw7b23bj4qnfj4vgl7zwwnslxmgz3rv0cmxn9klqx2";
   isLibrary = true;
   isExecutable = true;
   buildDepends = [
-    binary blazeHtml blazeMarkup cmdargs filepath hjsmin indents mtl
-    pandoc parsec transformers unionFind uniplate
+    aeson aesonPretty binary blazeHtml blazeMarkup cmdargs filepath
+    indents languageEcmascript mtl pandoc parsec text transformers
+    unionFind uniplate
   ];
+  testDepends = [ HTF ];
   doCheck = false;
   meta = {
     homepage = "http://elm-lang.org";