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

36 lines
1.1 KiB
Nix
Raw Normal View History

2017-03-20 03:58:24 +00:00
{ stdenv, fetchurl, makeWrapper, jre }:
2019-08-21 20:00:13 +01:00
let
zshCompletion = version: fetchurl {
url = "https://raw.githubusercontent.com/coursier/coursier/v${version}/modules/cli/src/main/resources/completions/zsh";
2020-02-10 11:41:54 +00:00
sha256 = "1mn6cdmf59nkz5012wgd3gd6hpk2w4629sk8z95230ky8487dac3";
2019-08-21 20:00:13 +01:00
};
in
2017-03-20 03:58:24 +00:00
stdenv.mkDerivation rec {
pname = "coursier";
2020-10-05 10:31:15 +01:00
version = "2.0.0";
2017-03-20 03:58:24 +00:00
src = fetchurl {
2019-04-27 18:49:25 +01:00
url = "https://github.com/coursier/coursier/releases/download/v${version}/coursier";
2020-10-05 10:31:15 +01:00
sha256 = "07j113cszd4wggm8js4jl1lhg88mfs46nl2xf1733icz7p5rvjim";
2017-03-20 03:58:24 +00:00
};
nativeBuildInputs = [ makeWrapper ];
2017-03-20 03:58:24 +00:00
2018-02-22 02:50:17 +00:00
buildCommand = ''
install -Dm555 $src $out/bin/coursier
patchShebangs $out/bin/coursier
wrapProgram $out/bin/coursier --prefix PATH ":" ${jre}/bin
2019-08-21 20:00:13 +01:00
# copy zsh completion
install -Dm755 ${zshCompletion version} $out/share/zsh/site-functions/_coursier
2017-03-20 03:58:24 +00:00
'';
meta = with stdenv.lib; {
homepage = "https://get-coursier.io/";
2017-03-20 03:58:24 +00:00
description = "A Scala library to fetch dependencies from Maven / Ivy repositories";
2017-04-08 20:03:33 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ adelbertc nequissimus ];
2017-03-20 03:58:24 +00:00
};
}