5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
35 lines
958 B
Nix
35 lines
958 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "jfrog-cli";
|
|
version = "2.43.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jfrog";
|
|
repo = "jfrog-cli";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Ad3kcx5F6U6ucamhhD0c5st86nrJxCPX9e62u7yjPYI=";
|
|
};
|
|
|
|
vendorHash = "sha256-iLjm8k0XbYcA05J52K8mGWleiMhSRjzzkTOrQ28UdVw=";
|
|
|
|
postInstall = ''
|
|
# Name the output the same way as the original build script does
|
|
mv $out/bin/jfrog-cli $out/bin/jf
|
|
'';
|
|
|
|
# Some of the tests require a writable $HOME
|
|
preCheck = "export HOME=$TMPDIR";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jfrog/jfrog-cli";
|
|
description = "Client for accessing to JFrog's Artifactory and Mission Control through their respective REST APIs";
|
|
changelog = "https://github.com/jfrog/jfrog-cli/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
mainProgram = "jf";
|
|
maintainers = with maintainers; [ detegr ];
|
|
};
|
|
}
|