Merge pull request #301375 from aidalgol/jf-cli-update

jfrog-cli: 2.52.10 -> 2.55.0
This commit is contained in:
Weijia Wang 2024-04-18 13:22:19 +02:00 committed by GitHub
commit e2b31e2426
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 33 additions and 4 deletions

View File

@ -1,20 +1,45 @@
{ lib
, buildGoModule
, fetchFromGitHub
, nodejs
, nix-update-script
}:
buildGoModule rec {
pname = "jfrog-cli";
version = "2.52.10";
version = "2.56.0";
src = fetchFromGitHub {
owner = "jfrog";
repo = "jfrog-cli";
rev = "refs/tags/v${version}";
hash = "sha256-sqKlYHOpjIxNff1QK540Xxqr7w+WZ+pZXgfAKjRbMuM=";
hash = "sha256-a7zCPyKV9kZ34XxVBYotcMvXUVrieunFpKGBK1Jhvo4=";
};
vendorHash = "sha256-Cm6Wu2U2i6WZfps1WLAjYuVZZ1y7J4WXFLmX2bkevd4=";
vendorHash = "sha256-q0PXbLTS5Po3xTK+CkU7BtZ6tk1PfH3zVAVK1IbmitY=";
# Upgrade the Go version during the vendoring FOD build because it fails otherwise.
overrideModAttrs = _: {
preBuild = ''
substituteInPlace go.mod --replace-fail 'go 1.20' 'go 1.21'
'';
postInstall = ''
cp go.mod "$out/go.mod"
'';
};
# Copy the modified go.mod we got from the vendoring process.
preBuild = ''
cp vendor/go.mod go.mod
'';
postPatch = ''
# Patch out broken test cleanup.
substituteInPlace artifactory_test.go \
--replace-fail \
'deleteReceivedReleaseBundle(t, "cli-tests", "2")' \
'// deleteReceivedReleaseBundle(t, "cli-tests", "2")'
'';
postInstall = ''
# Name the output the same way as the original build script does
@ -24,12 +49,16 @@ buildGoModule rec {
# Some of the tests require a writable $HOME
preCheck = "export HOME=$TMPDIR";
nativeCheckInputs = [ nodejs ];
passthru.updateScript = nix-update-script { };
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 ];
maintainers = with maintainers; [ detegr aidalgol ];
};
}