about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorFilipe Regadas <filiperegadas@gmail.com>2019-09-23 22:22:55 +0100
committerFilipe Regadas <filiperegadas@gmail.com>2019-09-23 22:22:55 +0100
commitfbd3e7b9e5d09c94d1ff44105770139e209ac538 (patch)
treeb2da126594b197ce322fc09993282c7dcb8198e7 /pkgs/development/tools
parent05764a9694e483a9bd210300c481a7b30fcbe415 (diff)
downloadnixlib-fbd3e7b9e5d09c94d1ff44105770139e209ac538.tar
nixlib-fbd3e7b9e5d09c94d1ff44105770139e209ac538.tar.gz
nixlib-fbd3e7b9e5d09c94d1ff44105770139e209ac538.tar.bz2
nixlib-fbd3e7b9e5d09c94d1ff44105770139e209ac538.tar.lz
nixlib-fbd3e7b9e5d09c94d1ff44105770139e209ac538.tar.xz
nixlib-fbd3e7b9e5d09c94d1ff44105770139e209ac538.tar.zst
nixlib-fbd3e7b9e5d09c94d1ff44105770139e209ac538.zip
Update sbt to 1.3.2
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/build-managers/sbt/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/build-managers/sbt/default.nix b/pkgs/development/tools/build-managers/sbt/default.nix
index d32eba51ce17..52c5f42c15df 100644
--- a/pkgs/development/tools/build-managers/sbt/default.nix
+++ b/pkgs/development/tools/build-managers/sbt/default.nix
@@ -2,7 +2,7 @@
 
 stdenv.mkDerivation rec {
   pname = "sbt";
-  version = "1.2.8";
+  version = "1.3.2";
 
   src = fetchurl {
     urls = [
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
       "https://github.com/sbt/sbt/releases/download/v${version}/sbt-${version}.tgz"
       "https://cocl.us/sbt-${version}.tgz"
     ];
-    sha256 = "0n7yghnb1q3lyjpv721znvslk5lwib7y84mxwz66yv8p84jj3fcv";
+    sha256 = "1ncjc4yrnhp2kc5xw3ismnyx5n71541760rzs81hxi8x8vi36x5b";
   };
 
   patchPhase = ''