summary refs log tree commit diff
path: root/pkgs/development/compilers/elm
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-05-01 12:19:46 +0200
committerPeter Simons <simons@cryp.to>2014-05-01 21:57:03 +0200
commit7452e8b4eb679ea34cd9c091611835be4d1f1402 (patch)
tree5be6f81454df25c4ada9b170dfb0d964dd0a95cb /pkgs/development/compilers/elm
parent4700996bc789b2e799022537896a19d131fb71b1 (diff)
downloadnixlib-7452e8b4eb679ea34cd9c091611835be4d1f1402.tar
nixlib-7452e8b4eb679ea34cd9c091611835be4d1f1402.tar.gz
nixlib-7452e8b4eb679ea34cd9c091611835be4d1f1402.tar.bz2
nixlib-7452e8b4eb679ea34cd9c091611835be4d1f1402.tar.lz
nixlib-7452e8b4eb679ea34cd9c091611835be4d1f1402.tar.xz
nixlib-7452e8b4eb679ea34cd9c091611835be4d1f1402.tar.zst
nixlib-7452e8b4eb679ea34cd9c091611835be4d1f1402.zip
haskell-Elm: update to version 0.12.1.3
Diffstat (limited to 'pkgs/development/compilers/elm')
-rw-r--r--pkgs/development/compilers/elm/elm.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/development/compilers/elm/elm.nix b/pkgs/development/compilers/elm/elm.nix
index bc9f73b28495..9fe18cdaf30e 100644
--- a/pkgs/development/compilers/elm/elm.nix
+++ b/pkgs/development/compilers/elm/elm.nix
@@ -7,8 +7,8 @@
 
 cabal.mkDerivation (self: {
   pname = "Elm";
-  version = "0.12";
-  sha256 = "1gmhnpcfv49bdifvz70fif71947q482pd1dbs5c84m8sn7c5n3ss";
+  version = "0.12.1.3";
+  sha256 = "1p4py4qyxsp25qa8141ywfh0qnvdid4v7xlbqkk8aafxccb7lsm9";
   isLibrary = true;
   isExecutable = true;
   buildDepends = [
@@ -17,16 +17,13 @@ cabal.mkDerivation (self: {
     unionFind unorderedContainers
   ];
   testDepends = [
-    aeson binary blazeHtml blazeMarkup cmdargs filemanip filepath HUnit
-    indents languageEcmascript mtl pandoc parsec QuickCheck
-    testFramework testFrameworkHunit testFrameworkQuickcheck2 text
-    transformers unionFind unorderedContainers
+    aeson aesonPretty binary blazeHtml blazeMarkup cmdargs filemanip
+    filepath HUnit indents languageEcmascript mtl pandoc parsec
+    QuickCheck testFramework testFrameworkHunit
+    testFrameworkQuickcheck2 text transformers unionFind
+    unorderedContainers
   ];
   doCheck = false;
-  preConfigure = ''
-    rm -f Setup.hs
-    echo -e "import Distribution.Simple\nmain=defaultMain\n" > Setup.hs
-  '';
   meta = {
     homepage = "http://elm-lang.org";
     description = "The Elm language module";