Merge pull request #210081 from Detegr/jfrog-cli
jfrog-cli: init at 2.32.0
This commit is contained in:
commit
902132d18a
3 changed files with 38 additions and 0 deletions
|
@ -16259,4 +16259,10 @@
|
||||||
github = "ziguana";
|
github = "ziguana";
|
||||||
githubId = 45833444;
|
githubId = 45833444;
|
||||||
};
|
};
|
||||||
|
detegr = {
|
||||||
|
name = "Antti Keränen";
|
||||||
|
email = "detegr@rbx.email";
|
||||||
|
github = "Detegr";
|
||||||
|
githubId = 724433;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
30
pkgs/tools/misc/jfrog-cli/default.nix
Normal file
30
pkgs/tools/misc/jfrog-cli/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{ buildGoModule, fetchFromGitHub, pkgs, lib }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "jfrog-cli";
|
||||||
|
version = "2.32.0";
|
||||||
|
vendorSha256 = "sha256-nL+2Yc4gI2+SoxoaGlazecsrcVkVh6Ig9sqITSOa5e0=";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jfrog";
|
||||||
|
repo = "jfrog-cli";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-EyDX4OrBAzc5eYR660SrGIG61TRlWnnV/GAtXy7DfEI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
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";
|
||||||
|
license = licenses.asl20;
|
||||||
|
mainProgram = "jf";
|
||||||
|
maintainers = [ maintainers.detegr ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -38491,4 +38491,6 @@ with pkgs;
|
||||||
alsa-scarlett-gui = callPackage ../applications/audio/alsa-scarlett-gui { };
|
alsa-scarlett-gui = callPackage ../applications/audio/alsa-scarlett-gui { };
|
||||||
|
|
||||||
tuner = callPackage ../applications/audio/tuner { };
|
tuner = callPackage ../applications/audio/tuner { };
|
||||||
|
|
||||||
|
jfrog-cli = callPackage ../tools/misc/jfrog-cli { };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue