nixpkgs/pkgs/development/tools/coursier/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.8 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, jre, writeScript, common-updater-scripts
2023-10-17 11:01:54 +00:00
, coreutils, git, gnused, nix, zlib }:
2017-03-20 03:58:24 +00:00
2023-10-17 11:01:54 +00:00
let
libPath = lib.makeLibraryPath [
zlib # libz.so.1
];
in
stdenv.mkDerivation rec {
pname = "coursier";
2023-12-11 09:50:06 +00:00
version = "2.1.8";
2017-03-20 03:58:24 +00:00
src = fetchurl {
url = "https://github.com/coursier/coursier/releases/download/v${version}/coursier";
2023-12-11 09:50:06 +00:00
hash = "sha256-fnd2/4ea411c/f3p/BzIHekoRYVznobJbBY4NGb1NwI=";
2017-03-20 03:58:24 +00:00
};
2023-10-17 11:01:54 +00:00
dontUnpack = true;
nativeBuildInputs = [ makeWrapper ];
2017-03-20 03:58:24 +00:00
2023-10-17 11:01:54 +00:00
installPhase = ''
runHook preInstall
2021-10-19 20:40:38 +00:00
install -Dm555 $src $out/bin/cs
patchShebangs $out/bin/cs
2023-10-17 11:01:54 +00:00
wrapProgram $out/bin/cs \
--prefix PATH ":" ${lib.makeBinPath [ jre ]} \
--prefix LD_LIBRARY_PATH ":" ${libPath}
runHook postInstall
2020-11-06 01:54:12 +00:00
'';
passthru.updateScript = writeScript "update.sh" ''
#!${stdenv.shell}
set -o errexit
PATH=${lib.makeBinPath [ common-updater-scripts coreutils git gnused nix ]}
2020-11-06 01:54:12 +00:00
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 https://github.com/coursier/coursier.git 'v*.*.*' | tail --lines=1 | cut --delimiter='/' --fields=3 | sed 's|^v||g')"
2020-11-06 01:54:12 +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
2017-03-20 03:58:24 +00:00
'';
meta = with lib; {
homepage = "https://get-coursier.io/";
description = "Scala library to fetch dependencies from Maven / Ivy repositories";
2017-04-08 19:03:33 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ adelbertc nequissimus ];
2023-10-17 11:01:54 +00:00
platforms = platforms.all;
2017-03-20 03:58:24 +00:00
};
}