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 19:00:13 +00:00
let
zshCompletion = version: fetchurl {
url = "https://raw.githubusercontent.com/coursier/coursier/v${version}/modules/cli/src/main/resources/completions/zsh";
2020-10-22 04:11:12 +00:00
sha256 = "0afxzrk9w1qinfsz55jjrxydw0fcv6p722g1q955dl7f6xbab1jh";
2019-08-21 19:00:13 +00:00
};
in
2017-03-20 03:58:24 +00:00
stdenv.mkDerivation rec {
pname = "coursier";
2020-11-02 17:34:22 +00:00
version = "2.0.6";
2017-03-20 03:58:24 +00:00
src = fetchurl {
2019-04-27 17:49:25 +00:00
url = "https://github.com/coursier/coursier/releases/download/v${version}/coursier";
2020-11-02 17:34:22 +00:00
sha256 = "0zg07bi44a5p0zfc77i1vmjz9rwzxzf6p0xsybsv3n1saq884wij";
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 19:00:13 +00: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 19:03:33 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ adelbertc nequissimus ];
2017-03-20 03:58:24 +00:00
};
}