mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
kustomize: init at 1.0.4
This commit is contained in:
parent
ec1082c58f
commit
4758fe7c56
28
pkgs/development/tools/kustomize/default.nix
Normal file
28
pkgs/development/tools/kustomize/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
|
||||
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "kustomize-${version}";
|
||||
version = "1.0.4";
|
||||
|
||||
goPackagePath = "github.com/kubernetes-sigs/kustomize";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
sha256 = "0lbf94wz34axaf8ps7h79qbj4dpihrpvnqa12zrawcmmgqallwhm";
|
||||
rev = "v${version}";
|
||||
repo = "kustomize";
|
||||
owner = "kubernetes-sigs";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Customization of kubernetes YAML configurations";
|
||||
longDescription = ''
|
||||
kustomize lets you customize raw, template-free YAML files for
|
||||
multiple purposes, leaving the original YAML untouched and usable
|
||||
as is.
|
||||
'';
|
||||
homepage = https://github.com/kubernetes-sigs/kustomize;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.carlosdagos ];
|
||||
};
|
||||
}
|
@ -8288,6 +8288,8 @@ with pkgs;
|
||||
|
||||
kube-aws = callPackage ../development/tools/kube-aws { };
|
||||
|
||||
kustomize = callPackage ../development/tools/kustomize { };
|
||||
|
||||
Literate = callPackage ../development/tools/literate-programming/Literate {};
|
||||
|
||||
lcov = callPackage ../development/tools/analysis/lcov { };
|
||||
|
Loading…
Reference in New Issue
Block a user