summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2017-05-02 08:56:20 -0400
committerTim Steinbach <tim@nequissimus.com>2017-05-02 08:56:20 -0400
commitc13e3289161d91afed3308c1c4400e6f4dc980dd (patch)
tree8793c94c7bff11545a25db35d40dc7170266245e /pkgs/development/tools
parentd7501b986a5d0f5a6ebe020d5f8bbb7c9d65b1ca (diff)
downloadnixpkgs-c13e3289161d91afed3308c1c4400e6f4dc980dd.tar
nixpkgs-c13e3289161d91afed3308c1c4400e6f4dc980dd.tar.gz
nixpkgs-c13e3289161d91afed3308c1c4400e6f4dc980dd.tar.bz2
nixpkgs-c13e3289161d91afed3308c1c4400e6f4dc980dd.tar.lz
nixpkgs-c13e3289161d91afed3308c1c4400e6f4dc980dd.tar.xz
nixpkgs-c13e3289161d91afed3308c1c4400e6f4dc980dd.tar.zst
nixpkgs-c13e3289161d91afed3308c1c4400e6f4dc980dd.zip
ammonite: 0.8.3 -> 0.8.4
Also rename package and add alias for the old name.
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/ammonite/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/tools/ammonite/default.nix b/pkgs/development/tools/ammonite/default.nix
index 4c64141fd4d..04916b1ef75 100644
--- a/pkgs/development/tools/ammonite/default.nix
+++ b/pkgs/development/tools/ammonite/default.nix
@@ -1,12 +1,13 @@
 { stdenv, lib, fetchurl, makeWrapper, jre }:
 
 stdenv.mkDerivation rec {
-  name = "ammonite-repl-${version}";
-  version = "0.8.3";
+  name = "ammonite-${version}";
+  version = "0.8.4";
+  scalaVersion = "2.12";
 
   src = fetchurl {
-    url = "https://github.com/lihaoyi/Ammonite/releases/download/${version}/2.12-${version}";
-    sha256 = "0y4524y2w7aq300djcazb7ckkr3gqpim2grcgb237mxq3fdvb0r8";
+    url = "https://github.com/lihaoyi/Ammonite/releases/download/${version}/${scalaVersion}-${version}";
+    sha256 = "04kni08yd53w8dhkkgbydzkka4cnp31l2d8g23iinkn10ckmz5jm";
   };
 
   propagatedBuildInputs = [ jre ] ;