summary refs log tree commit diff
path: root/pkgs/development/compilers/elm
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-05-21 16:19:28 +0200
committerPeter Simons <simons@cryp.to>2014-05-21 23:04:30 +0200
commit4f5fce27106a147cf8af1e765b631e2ff1da7aa3 (patch)
tree1aa380d01f1cb0ddcba8be3bcd7b641ffd7c70a8 /pkgs/development/compilers/elm
parent41d7d0ad31ef297aa60eda22a881aa08e9dc4b2b (diff)
downloadnixlib-4f5fce27106a147cf8af1e765b631e2ff1da7aa3.tar
nixlib-4f5fce27106a147cf8af1e765b631e2ff1da7aa3.tar.gz
nixlib-4f5fce27106a147cf8af1e765b631e2ff1da7aa3.tar.bz2
nixlib-4f5fce27106a147cf8af1e765b631e2ff1da7aa3.tar.lz
nixlib-4f5fce27106a147cf8af1e765b631e2ff1da7aa3.tar.xz
nixlib-4f5fce27106a147cf8af1e765b631e2ff1da7aa3.tar.zst
nixlib-4f5fce27106a147cf8af1e765b631e2ff1da7aa3.zip
haskell-Elm: update to version 0.12.3
Diffstat (limited to 'pkgs/development/compilers/elm')
-rw-r--r--pkgs/development/compilers/elm/elm.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/development/compilers/elm/elm.nix b/pkgs/development/compilers/elm/elm.nix
index 9fe18cdaf30e..3daa1b507b76 100644
--- a/pkgs/development/compilers/elm/elm.nix
+++ b/pkgs/development/compilers/elm/elm.nix
@@ -1,27 +1,27 @@
 { cabal, aeson, aesonPretty, binary, blazeHtml, blazeMarkup
 , cmdargs, filemanip, filepath, HUnit, indents, languageEcmascript
-, mtl, pandoc, parsec, QuickCheck, testFramework
-, testFrameworkHunit, testFrameworkQuickcheck2, text, transformers
-, unionFind, unorderedContainers
+, languageGlsl, mtl, pandoc, parsec, QuickCheck, scientific
+, testFramework, testFrameworkHunit, testFrameworkQuickcheck2, text
+, transformers, unionFind, unorderedContainers, yaml
 }:
 
 cabal.mkDerivation (self: {
   pname = "Elm";
-  version = "0.12.1.3";
-  sha256 = "1p4py4qyxsp25qa8141ywfh0qnvdid4v7xlbqkk8aafxccb7lsm9";
+  version = "0.12.3";
+  sha256 = "1v6h9qbbz27ikh19xwjbyfw0zi5ag9x1gp0khh9v4af1g0j86320";
   isLibrary = true;
   isExecutable = true;
   buildDepends = [
     aeson aesonPretty binary blazeHtml blazeMarkup cmdargs filepath
-    indents languageEcmascript mtl pandoc parsec text transformers
-    unionFind unorderedContainers
+    indents languageEcmascript languageGlsl mtl pandoc parsec
+    scientific text transformers unionFind unorderedContainers yaml
   ];
   testDepends = [
     aeson aesonPretty binary blazeHtml blazeMarkup cmdargs filemanip
-    filepath HUnit indents languageEcmascript mtl pandoc parsec
-    QuickCheck testFramework testFrameworkHunit
+    filepath HUnit indents languageEcmascript languageGlsl mtl pandoc
+    parsec QuickCheck scientific testFramework testFrameworkHunit
     testFrameworkQuickcheck2 text transformers unionFind
-    unorderedContainers
+    unorderedContainers yaml
   ];
   doCheck = false;
   meta = {