ammonite: 0.8.3 -> 0.8.4

Also rename package and add alias for the old name.
This commit is contained in:
Tim Steinbach
2017-05-02 08:56:20 -04:00
parent d7501b986a
commit c13e328916
3 changed files with 7 additions and 5 deletions
+5 -4
View File
@@ -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 ] ;