mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
58 lines
1.3 KiB
Nix
58 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "arkade";
|
|
version = "0.8.52";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alexellis";
|
|
repo = "arkade";
|
|
rev = version;
|
|
sha256 = "sha256-fKLvWlGJmhTvjcihJOytPvSNqhWOtJhWxMgw9gpc2M0=";
|
|
};
|
|
|
|
CGO_ENABLED = 0;
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
vendorSha256 = "sha256-E2b0iJtOcRBOW4PEI/1ECM4fJa+s/LHtmRK/iYvJ358=";
|
|
|
|
# Exclude pkg/get: tests downloading of binaries which fail when sandbox=true
|
|
subPackages = [
|
|
"."
|
|
"cmd"
|
|
"pkg/apps"
|
|
"pkg/archive"
|
|
"pkg/config"
|
|
"pkg/env"
|
|
"pkg/helm"
|
|
"pkg/k8s"
|
|
"pkg/types"
|
|
];
|
|
|
|
ldflags = [
|
|
"-s" "-w"
|
|
"-X github.com/alexellis/arkade/cmd.GitCommit=ref/tags/${version}"
|
|
"-X github.com/alexellis/arkade/cmd.Version=${version}"
|
|
];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd arkade \
|
|
--bash <($out/bin/arkade completion bash) \
|
|
--zsh <($out/bin/arkade completion zsh) \
|
|
--fish <($out/bin/arkade completion fish)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/alexellis/arkade";
|
|
description = "Open Source Kubernetes Marketplace";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ welteki techknowlogick ];
|
|
};
|
|
}
|