summary refs log tree commit diff
path: root/pkgs/top-level/haskell-packages.nix
diff options
context:
space:
mode:
authorKris Jenkins <krisajenkins@gmail.com>2015-01-19 09:18:28 +0000
committerKris Jenkins <krisajenkins@gmail.com>2015-01-19 09:31:35 +0000
commitfb4a6119b6f997896d4e254ad8a878b283000787 (patch)
treec1edbec9878079e4ce4f2969faa9b9bfc0c1c24e /pkgs/top-level/haskell-packages.nix
parentc163baca3bf09af9431bc2c00a642282f5e64776 (diff)
downloadnixlib-fb4a6119b6f997896d4e254ad8a878b283000787.tar
nixlib-fb4a6119b6f997896d4e254ad8a878b283000787.tar.gz
nixlib-fb4a6119b6f997896d4e254ad8a878b283000787.tar.bz2
nixlib-fb4a6119b6f997896d4e254ad8a878b283000787.tar.lz
nixlib-fb4a6119b6f997896d4e254ad8a878b283000787.tar.xz
nixlib-fb4a6119b6f997896d4e254ad8a878b283000787.tar.zst
nixlib-fb4a6119b6f997896d4e254ad8a878b283000787.zip
Updating Elm packages.
This includes updates to elm -compiler, -make, -package and -reactor.
-repl's test suite currently breaks.

The build for elm-reactor could be more concise, but it's clean. The
final build step for elm-reactor ultimately relies on elm-package
downloading some libraries, so anything radically better would probably
need nix to step in and somehow emulate elm-package. That would take
more knowledge about elm & nix than I have...
Diffstat (limited to 'pkgs/top-level/haskell-packages.nix')
-rw-r--r--pkgs/top-level/haskell-packages.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index 71a2ab092e42..23bda9658026 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -781,7 +781,9 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
     optparseApplicative = self.optparseApplicative_0_10_0;
   };
 
-  elmPackage = callPackage ../development/compilers/elm/elm-package.nix {};
+  elmPackage = callPackage ../development/compilers/elm/elm-package.nix {
+    optparseApplicative = self.optparseApplicative_0_10_0;
+  };
 
   elmServer = callPackage ../development/compilers/elm/elm-server.nix {};