summary refs log tree commit diff
path: root/pkgs/development/tools/coursier
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-02-13 23:58:53 +0000
committerTim Steinbach <NeQuissimus@users.noreply.github.com>2021-02-13 20:15:16 -0500
commita8559f10e5ae6618e6a5c6e23bcf88d782ef56bf (patch)
tree54fc54b26ea305368ccca06b6b4397ea514ced1e /pkgs/development/tools/coursier
parent320861fcd0d5978d1930316a9ab216ff41d3776e (diff)
downloadnixpkgs-a8559f10e5ae6618e6a5c6e23bcf88d782ef56bf.tar
nixpkgs-a8559f10e5ae6618e6a5c6e23bcf88d782ef56bf.tar.gz
nixpkgs-a8559f10e5ae6618e6a5c6e23bcf88d782ef56bf.tar.bz2
nixpkgs-a8559f10e5ae6618e6a5c6e23bcf88d782ef56bf.tar.lz
nixpkgs-a8559f10e5ae6618e6a5c6e23bcf88d782ef56bf.tar.xz
nixpkgs-a8559f10e5ae6618e6a5c6e23bcf88d782ef56bf.tar.zst
nixpkgs-a8559f10e5ae6618e6a5c6e23bcf88d782ef56bf.zip
coursier: 2.0.9 -> 2.0.11
Diffstat (limited to 'pkgs/development/tools/coursier')
-rw-r--r--pkgs/development/tools/coursier/default.nix13
1 files changed, 3 insertions, 10 deletions
diff --git a/pkgs/development/tools/coursier/default.nix b/pkgs/development/tools/coursier/default.nix
index e016f0ef7c9..ba96cfafe48 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.9";
+  version = "2.0.11";
 
   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 = "sha256-jqSv9VBLotl6YVWgWNznvTThRIiMUStQ0WbN6u01b1c=";
+    sha256 = "sha256-jmKJPBPzO8DiXuJoHWibinkaAzneXdSK85SQfJ2nWhg=";
   };
 
   nativeBuildInputs = [ makeWrapper ];
@@ -37,14 +37,7 @@ in stdenv.mkDerivation rec {
     #!${stdenv.shell}
     set -o errexit
     PATH=${
-      lib.makeBinPath [
-        common-updater-scripts
-        coreutils
-        git
-        gnused
-        nix
-        nixfmt
-      ]
+      lib.makeBinPath [ common-updater-scripts coreutils git gnused nix nixfmt ]
     }
     oldVersion="$(nix-instantiate --eval -E "with import ./. {}; lib.getVersion ${pname}" | tr -d '"')"
     latestTag="$(git -c 'versionsort.suffix=-' ls-remote --exit-code --refs --sort='version:refname' --tags ${repo} 'v*.*.*' | tail --lines=1 | cut --delimiter='/' --fields=3 | sed 's|^v||g')"