mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
29 lines
680 B
Nix
29 lines
680 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "spacectl";
|
|
version = "1.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spacelift-io";
|
|
repo = "spacectl";
|
|
rev = "v${version}";
|
|
hash = "sha256-pO+jYuCyP6YrU9vE3//O0EyTDXYQ1WSpFI/8WbneDCA=";
|
|
};
|
|
|
|
vendorHash = "sha256-SYfXG6YM0Q2rCnoTM2tYvE17uBCD8yQiW/5DTCxMPWo=";
|
|
|
|
meta = {
|
|
homepage = "https://github.com/spacelift-io/spacectl";
|
|
description = "Spacelift client and CLI";
|
|
changelog = "https://github.com/spacelift-io/spacectl/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ kashw2 ];
|
|
mainProgram = "spacectl";
|
|
};
|
|
}
|