mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
gitlab-release-cli: init at 0.18.0
This commit is contained in:
parent
c750e64182
commit
2582c01cfa
33
pkgs/by-name/gi/gitlab-release-cli/package.nix
Normal file
33
pkgs/by-name/gi/gitlab-release-cli/package.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitLab,
|
||||
buildGoModule,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "gitlab-release-cli";
|
||||
version = "0.18.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "gitlab-org";
|
||||
repo = "release-cli";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-CCSice/uMf2OfFNEpwwhX6A0wrSsC1v9XWEhAAwQRso=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-UwDMRsWbk8rEv2d5FssIzCLby68YZULoxd3/JGLsCQU=";
|
||||
|
||||
checkFlags = lib.optionals stdenv.isDarwin [
|
||||
# Skip failing test
|
||||
"-skip TestHTTPSCustomCA"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Toolset to create, retrieve and update releases on GitLab";
|
||||
homepage = "https://gitlab.com/gitlab-org/release-cli";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ kilimnik ];
|
||||
mainProgram = "release-cli";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user