about summary refs log tree commit diff
path: root/pkgs/development/compilers/elm/packages/elm-make.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/elm/packages/elm-make.nix')
-rw-r--r--pkgs/development/compilers/elm/packages/elm-make.nix22
1 files changed, 11 insertions, 11 deletions
diff --git a/pkgs/development/compilers/elm/packages/elm-make.nix b/pkgs/development/compilers/elm/packages/elm-make.nix
index 22fb78f75eee..953039ec0a83 100644
--- a/pkgs/development/compilers/elm/packages/elm-make.nix
+++ b/pkgs/development/compilers/elm/packages/elm-make.nix
@@ -1,22 +1,22 @@
-{ mkDerivation, aeson, ansi-wl-pprint, base, binary, blaze-html
-, blaze-markup, bytestring, containers, directory, elm-compiler
-, elm-package, fetchgit, filepath, mtl, optparse-applicative
-, stdenv, text
+{ mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base, binary
+, blaze-html, blaze-markup, bytestring, containers, directory
+, elm-compiler, elm-package, fetchgit, filepath, mtl
+, optparse-applicative, stdenv, text, time
 }:
 mkDerivation {
   pname = "elm-make";
-  version = "0.2";
+  version = "0.16";
   src = fetchgit {
     url = "https://github.com/elm-lang/elm-make";
-    sha256 = "b618e827ca01ddeae38624f4bf5baa3dc4cb6e9e3c9bf15f2dda5a7c756bca33";
-    rev = "d9bedfdadc9cefce8e5249db6a316a5e712158d0";
+    sha256 = "bae1206c8066fb4e191345a3da79b89a5ec488929370b210203c8b4dcb35cebc";
+    rev = "e3bfc3e3d04c9b47e18fac289c796caec88d4fef";
   };
   isLibrary = false;
   isExecutable = true;
-  buildDepends = [
-    aeson ansi-wl-pprint base binary blaze-html blaze-markup bytestring
-    containers directory elm-compiler elm-package filepath mtl
-    optparse-applicative text
+  executableHaskellDepends = [
+    aeson ansi-terminal ansi-wl-pprint base binary blaze-html
+    blaze-markup bytestring containers directory elm-compiler
+    elm-package filepath mtl optparse-applicative text time
   ];
   jailbreak = true;
   homepage = "http://elm-lang.org";