nixpkgs/pkgs/tools/misc/jfrog-cli/default.nix

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

36 lines
958 B
Nix
Raw Normal View History

2023-05-21 10:20:59 +02:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
2023-01-10 20:04:11 +01:00
buildGoModule rec {
pname = "jfrog-cli";
2024-01-01 08:58:35 +01:00
version = "2.52.8";
2023-01-10 20:04:11 +01:00
src = fetchFromGitHub {
owner = "jfrog";
repo = "jfrog-cli";
2023-05-21 10:20:59 +02:00
rev = "refs/tags/v${version}";
2024-01-01 08:58:35 +01:00
hash = "sha256-u7hq0VHHcSZ7uiYEz6cqZ7CN0iwKRSwKmAh5+Hf17WU=";
2023-01-10 20:04:11 +01:00
};
2024-01-01 08:58:35 +01:00
vendorHash = "sha256-xLkzoQWT4jRBC5+11pAboxlynu+cmhynMnh3yh+qn/8=";
2023-05-21 10:20:59 +02:00
2023-01-10 20:04:11 +01:00
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";
2023-05-21 10:20:59 +02:00
changelog = "https://github.com/jfrog/jfrog-cli/releases/tag/v${version}";
2023-01-10 20:04:11 +01:00
license = licenses.asl20;
mainProgram = "jf";
2023-05-21 10:20:59 +02:00
maintainers = with maintainers; [ detegr ];
2023-01-10 20:04:11 +01:00
};
}