2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, makeWrapper, jre, writeScript, common-updater-scripts
|
2023-10-19 13:55:26 +00:00
|
|
|
, coreutils, git, gnused, nix, zlib }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-10-19 13:55:26 +00:00
|
|
|
let
|
|
|
|
libPath = lib.makeLibraryPath [
|
|
|
|
zlib # libz.so.1
|
|
|
|
];
|
|
|
|
in
|
2023-03-24 00:07:29 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "coursier";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "2.1.8";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-03-24 00:07:29 +00:00
|
|
|
url = "https://github.com/coursier/coursier/releases/download/v${version}/coursier";
|
2024-01-13 08:15:51 +00:00
|
|
|
hash = "sha256-fnd2/4ea411c/f3p/BzIHekoRYVznobJbBY4NGb1NwI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-10-19 13:55:26 +00:00
|
|
|
dontUnpack = true;
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
2023-10-19 13:55:26 +00:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
install -Dm555 $src $out/bin/cs
|
|
|
|
patchShebangs $out/bin/cs
|
2023-10-19 13:55:26 +00:00
|
|
|
wrapProgram $out/bin/cs \
|
|
|
|
--prefix PATH ":" ${lib.makeBinPath [ jre ]} \
|
|
|
|
--prefix LD_LIBRARY_PATH ":" ${libPath}
|
|
|
|
|
|
|
|
runHook postInstall
|
2020-11-06 00:33:48 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.updateScript = writeScript "update.sh" ''
|
|
|
|
#!${stdenv.shell}
|
|
|
|
set -o errexit
|
2023-03-24 00:07:29 +00:00
|
|
|
PATH=${lib.makeBinPath [ common-updater-scripts coreutils git gnused nix ]}
|
2020-11-06 00:33:48 +00:00
|
|
|
oldVersion="$(nix-instantiate --eval -E "with import ./. {}; lib.getVersion ${pname}" | tr -d '"')"
|
2023-03-24 00:07:29 +00:00
|
|
|
latestTag="$(git -c 'versionsort.suffix=-' ls-remote --exit-code --refs --sort='version:refname' --tags https://github.com/coursier/coursier.git 'v*.*.*' | tail --lines=1 | cut --delimiter='/' --fields=3 | sed 's|^v||g')"
|
2020-11-06 00:33:48 +00:00
|
|
|
if [ "$oldVersion" != "$latestTag" ]; then
|
|
|
|
nixpkgs="$(git rev-parse --show-toplevel)"
|
|
|
|
default_nix="$nixpkgs/pkgs/development/tools/coursier/default.nix"
|
|
|
|
update-source-version ${pname} "$latestTag" --version-key=version --print-changes
|
|
|
|
else
|
|
|
|
echo "${pname} is already up-to-date"
|
|
|
|
fi
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://get-coursier.io/";
|
2023-03-24 00:07:29 +00:00
|
|
|
description = "Scala library to fetch dependencies from Maven / Ivy repositories";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ adelbertc nequissimus ];
|
2023-10-19 13:55:26 +00:00
|
|
|
platforms = platforms.all;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|