summary refs log tree commit diff
path: root/pkgs/development/tools/ammonite
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2021-11-13 23:19:44 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2021-11-13 23:19:44 +0000
commited35f91ec85eadc70fe499328b26289c16a7e00c (patch)
tree28edf95e2875bad27c3f5bd4ba3781680fe59fca /pkgs/development/tools/ammonite
parenta6b0f5af471e2386f289be9690ecb303720b97cb (diff)
downloadnixpkgs-ed35f91ec85eadc70fe499328b26289c16a7e00c.tar
nixpkgs-ed35f91ec85eadc70fe499328b26289c16a7e00c.tar.gz
nixpkgs-ed35f91ec85eadc70fe499328b26289c16a7e00c.tar.bz2
nixpkgs-ed35f91ec85eadc70fe499328b26289c16a7e00c.tar.lz
nixpkgs-ed35f91ec85eadc70fe499328b26289c16a7e00c.tar.xz
nixpkgs-ed35f91ec85eadc70fe499328b26289c16a7e00c.tar.zst
nixpkgs-ed35f91ec85eadc70fe499328b26289c16a7e00c.zip
ammonite: 2.4.0 -> 2.4.1
Diffstat (limited to 'pkgs/development/tools/ammonite')
-rw-r--r--pkgs/development/tools/ammonite/default.nix24
1 files changed, 6 insertions, 18 deletions
diff --git a/pkgs/development/tools/ammonite/default.nix b/pkgs/development/tools/ammonite/default.nix
index 7f189e83e19..a31a6478a76 100644
--- a/pkgs/development/tools/ammonite/default.nix
+++ b/pkgs/development/tools/ammonite/default.nix
@@ -1,16 +1,5 @@
-{ lib
-, stdenv
-, fetchurl
-, jre
-, writeScript
-, common-updater-scripts
-, git
-, nixfmt
-, nix
-, coreutils
-, gnused
-, disableRemoteLogging ? true
-}:
+{ lib, stdenv, fetchurl, jre, writeScript, common-updater-scripts, git, nixfmt
+, nix, coreutils, gnused, disableRemoteLogging ? true }:
 
 with lib;
 
@@ -20,7 +9,7 @@ let
   common = { scalaVersion, sha256 }:
     stdenv.mkDerivation rec {
       pname = "ammonite";
-      version = "2.4.0";
+      version = "2.4.1";
 
       src = fetchurl {
         url =
@@ -91,14 +80,13 @@ let
         maintainers = [ maintainers.nequissimus ];
       };
     };
-in
-{
+in {
   ammonite_2_12 = common {
     scalaVersion = "2.12";
-    sha256 = "K8JII6SAmnBjMWQ9a3NqSLLuP1OLcbwobj3G+OCiLdA=";
+    sha256 = "5n9q/7d/PwDJfBPITYyDua24+fci6bi1oG5dSw8A244=";
   };
   ammonite_2_13 = common {
     scalaVersion = "2.13";
-    sha256 = "2F35qhWI6hNb+Eh9ZTDznqo116yN7MZIGVchaAIM36A=";
+    sha256 = "RIuNyWvwNM39/rczUH328K5ky5hePflokW/VP603j+I=";
   };
 }