mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
code-generator: init at 0.25.4
This commit is contained in:
parent
b33a7fa3fa
commit
ea26cd3f0d
25
pkgs/development/tools/kubernetes-code-generator/default.nix
Normal file
25
pkgs/development/tools/kubernetes-code-generator/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "code-generator";
|
||||
version = "0.25.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kubernetes";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-GKF6DXvyZujInOZbV0ePUu71BEl1s/chNTN1PucdIYw=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-zjgTtGen6a8TPi/DrwheTS1VQ+hd+KI7UHoyMZ4W4+k=";
|
||||
|
||||
ldflags = [ "-s" "-w" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/kubernetes/code-generator";
|
||||
changelog = "https://github.com/kubernetes/code-generator/releases/tag/v${version}";
|
||||
description = "Kubernetes code generation";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ urandom ];
|
||||
};
|
||||
}
|
@ -30061,6 +30061,8 @@ with pkgs;
|
||||
|
||||
kiln = callPackage ../applications/misc/kiln { };
|
||||
|
||||
kubernetes-code-generator = callPackage ../development/tools/kubernetes-code-generator {};
|
||||
|
||||
kubernetes-controller-tools = callPackage ../development/tools/kubernetes-controller-tools { };
|
||||
|
||||
kubernetes-helm = callPackage ../applications/networking/cluster/helm { };
|
||||
|
Loading…
Reference in New Issue
Block a user