kustomize: init at 1.0.4

This commit is contained in:
Carlos D 2018-07-26 12:56:44 +10:00 committed by Ryan Mulligan
parent ec1082c58f
commit 4758fe7c56
2 changed files with 30 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };