summary refs log tree commit diff
path: root/pkgs/development/tools/coursier
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-12-23 17:05:51 -0500
committerTim Steinbach <tim@nequissimus.com>2020-12-23 17:05:51 -0500
commitf061d6ff26128256b12a51e2f0037cd79bd7e7a1 (patch)
tree712c2d7fbcddd274747ced225a11aa739331abb5 /pkgs/development/tools/coursier
parentdb9a28338f4bfa0c571881eec4745bae2708b42f (diff)
downloadnixpkgs-f061d6ff26128256b12a51e2f0037cd79bd7e7a1.tar
nixpkgs-f061d6ff26128256b12a51e2f0037cd79bd7e7a1.tar.gz
nixpkgs-f061d6ff26128256b12a51e2f0037cd79bd7e7a1.tar.bz2
nixpkgs-f061d6ff26128256b12a51e2f0037cd79bd7e7a1.tar.lz
nixpkgs-f061d6ff26128256b12a51e2f0037cd79bd7e7a1.tar.xz
nixpkgs-f061d6ff26128256b12a51e2f0037cd79bd7e7a1.tar.zst
nixpkgs-f061d6ff26128256b12a51e2f0037cd79bd7e7a1.zip
coursier: 2.0.7 -> 2.0.8
Diffstat (limited to 'pkgs/development/tools/coursier')
-rw-r--r--pkgs/development/tools/coursier/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/coursier/default.nix b/pkgs/development/tools/coursier/default.nix
index 0d42bcff7cf..a0f69033923 100644
--- a/pkgs/development/tools/coursier/default.nix
+++ b/pkgs/development/tools/coursier/default.nix
@@ -2,7 +2,7 @@
 , coreutils, git, gnused, nix, nixfmt }:
 
 let
-  version = "2.0.7";
+  version = "2.0.8";
 
   zshCompletion = fetchurl {
     url =
@@ -19,7 +19,7 @@ in stdenv.mkDerivation rec {
   src = fetchurl {
     url =
       "https://github.com/coursier/coursier/releases/download/v${version}/coursier";
-    sha256 = "1m6b12cqbwsk4xf2r79y51154j6ws6f0kiw1yj57gylw7pjkgfnk";
+    sha256 = "sha256-7dNJUMZu6YY3076cnjWHRisJZVn1NPRH1VC+cJjfI/8=";
   };
 
   nativeBuildInputs = [ makeWrapper ];