mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 19:24:20 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
28 lines
721 B
Nix
28 lines
721 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kconf";
|
|
version = "2.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "particledecay";
|
|
repo = "kconf";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-bLyLXkXOZRFaplv5sY0TgFffvbA3RUwz6b+7h3MN7kA=";
|
|
};
|
|
|
|
vendorHash = "sha256-REguLiYlcC2Q6ao2oMl92/cznW+E8MO2UGhQKRXZ1vQ=";
|
|
|
|
ldflags = [
|
|
"-s" "-w" "-X github.com/particledecay/kconf/build.Version=${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "An opinionated command line tool for managing multiple kubeconfigs";
|
|
mainProgram = "kconf";
|
|
homepage = "https://github.com/particledecay/kconf";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ thmzlt ];
|
|
};
|
|
}
|