summary refs log tree commit diff
path: root/pkgs/top-level/haskell-packages.nix
diff options
context:
space:
mode:
authorTom Hunger <tehunger@gmail.com>2014-12-17 10:57:25 +0000
committerPeter Simons <simons@cryp.to>2015-01-01 15:45:30 +0100
commitc53b959c0e316af0f22795c38ff9dc1abae21017 (patch)
treedb9dd31c12c45983afd3d31feda38c25c5128882 /pkgs/top-level/haskell-packages.nix
parent5d7dbaa0fe06a8d58063e40790f2cbc62fbee830 (diff)
downloadnixlib-c53b959c0e316af0f22795c38ff9dc1abae21017.tar
nixlib-c53b959c0e316af0f22795c38ff9dc1abae21017.tar.gz
nixlib-c53b959c0e316af0f22795c38ff9dc1abae21017.tar.bz2
nixlib-c53b959c0e316af0f22795c38ff9dc1abae21017.tar.lz
nixlib-c53b959c0e316af0f22795c38ff9dc1abae21017.tar.xz
nixlib-c53b959c0e316af0f22795c38ff9dc1abae21017.tar.zst
nixlib-c53b959c0e316af0f22795c38ff9dc1abae21017.zip
Update elm to 0.14.
Note that elm has a different package split: The old Elm 0.13 package
is now elm-compiler, elm-make and elm-package.

Instead of invoking "elm" one now has to use "elm-make".

I kept the 0.13 version of elm around in case someone depends
on it.
Diffstat (limited to 'pkgs/top-level/haskell-packages.nix')
-rw-r--r--pkgs/top-level/haskell-packages.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index 47e71626b311..d2e3ff56485b 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -765,6 +765,12 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
 
   Elm = callPackage ../development/compilers/elm/elm.nix {};
 
+  elmCompiler = callPackage ../development/compilers/elm/elm-compiler.nix {};
+
+  elmMake = callPackage ../development/compilers/elm/elm-make.nix {};
+
+  elmPackage = callPackage ../development/compilers/elm/elm-package.nix {};
+
   elmServer = callPackage ../development/compilers/elm/elm-server.nix {};
 
   elmRepl = callPackage ../development/compilers/elm/elm-repl.nix {};