nixpkgs/pkgs/development/tools/kubeprompt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
683 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-10-27 22:51:39 +00:00
buildGoModule rec {
pname = "kubeprompt";
2021-11-11 09:37:25 +00:00
version = "0.4.0";
2019-10-27 22:51:39 +00:00
src = fetchFromGitHub {
owner = "jlesquembre";
repo = pname;
rev = version;
2023-09-21 14:23:40 +00:00
hash = "sha256-is6Rz0tw/g4HyGJMTHj+r390HZAytVhfGVRzZ5wKZkU=";
2019-10-27 22:51:39 +00:00
};
2023-09-21 14:23:40 +00:00
vendorHash = "sha256-UUMulGnqfIshN2WIejZgwrWWlywj5TpnAQ4A5/d0NCE=";
2021-08-20 07:12:14 +00:00
ldflags = [
2021-11-11 09:37:25 +00:00
"-w"
"-s"
2021-08-20 07:12:14 +00:00
"-X github.com/jlesquembre/kubeprompt/pkg/version.Version=${version}"
];
2019-10-27 22:51:39 +00:00
doCheck = false;
meta = with lib; {
2019-10-27 22:51:39 +00:00
description = "Kubernetes prompt";
homepage = "https://github.com/jlesquembre/kubeprompt";
license = licenses.epl20;
maintainers = with maintainers; [ jlesquembre ];
};
}