mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 13:53:24 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
58 lines
1.9 KiB
Nix
58 lines
1.9 KiB
Nix
{ lib, stdenv, fetchurl, makeWrapper, jre, writeScript, common-updater-scripts
|
|
, coreutils, git, gnused, nix, zlib }:
|
|
|
|
let
|
|
libPath = lib.makeLibraryPath [
|
|
zlib # libz.so.1
|
|
];
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "coursier";
|
|
version = "2.1.9";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/coursier/coursier/releases/download/v${version}/coursier";
|
|
hash = "sha256-Zj0nDCpbT7foGdUkxPG/FeljZj1alk/gvE0m/T4WlXE=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm555 $src $out/bin/cs
|
|
patchShebangs $out/bin/cs
|
|
wrapProgram $out/bin/cs \
|
|
--prefix PATH ":" ${lib.makeBinPath [ jre ]} \
|
|
--prefix LD_LIBRARY_PATH ":" ${libPath}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = writeScript "update.sh" ''
|
|
#!${stdenv.shell}
|
|
set -o errexit
|
|
PATH=${lib.makeBinPath [ common-updater-scripts coreutils git gnused nix ]}
|
|
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')"
|
|
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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://get-coursier.io/";
|
|
description = "Scala library to fetch dependencies from Maven / Ivy repositories";
|
|
mainProgram = "cs";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ adelbertc nequissimus ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|