kubetrim: init at 0.0.1

Co-authored-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Bruno Bigras
2024-11-07 14:09:08 -05:00
co-authored by Austin Horstman
parent fe81678220
commit c5edbce75d
+34
View File
@@ -0,0 +1,34 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
name = "kubetrim";
version = "0.0.1";
src = fetchFromGitHub {
owner = "alexellis";
repo = "kubetrim";
rev = "refs/tags/v${version}";
hash = "sha256-fX8CbId2ArJlnGkevCSB7eE6Ovs8vJR9+l//k4DgvK4=";
};
vendorHash = "sha256-m9OuVFlD4F170Q6653HdvUhdULjR2cAttLsUN03XIXo=";
ldflags = [
"-s"
"-w"
"-X github.com/alexellis/kubetrim/pkg.Version=${version}"
];
meta = {
description = "Trim your KUBECONFIG automatically";
homepage = "https://github.com/alexellis/kubetrim";
changelog = "https://github.com/alexellis/kubetrim/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bbigras ];
mainProgram = "kubetrim";
};
}