mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
acr-cli: init at 0.14
This commit is contained in:
parent
0c59695ccc
commit
2432cb68e4
45
pkgs/by-name/ac/acr-cli/package.nix
Normal file
45
pkgs/by-name/ac/acr-cli/package.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
testers,
|
||||
nix-update-script,
|
||||
acr-cli,
|
||||
}:
|
||||
buildGoModule rec {
|
||||
pname = "acr-cli";
|
||||
version = "0.14";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Azure";
|
||||
repo = "acr-cli";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-h4vRtxAu/ggEu5HuzaiEoLslOyAXP1rMI1/ua9YARug=";
|
||||
};
|
||||
|
||||
vendorHash = null;
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X=github.com/Azure/acr-cli/version.Version=${version}"
|
||||
"-X=github.com/Azure/acr-cli/version.Revision=${src.rev}"
|
||||
];
|
||||
|
||||
executable = [ "acr" ];
|
||||
|
||||
passthru.tests.version = testers.testVersion {
|
||||
package = acr-cli;
|
||||
command = "acr version";
|
||||
};
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Command Line Tool for interacting with Azure Container Registry Images";
|
||||
homepage = "https://github.com/Azure/acr-cli";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ hausken ];
|
||||
mainProgram = "acr-cli";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user