Skip to content

Commit

Permalink
feat: kustomizer init at 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aldoborrero committed Aug 18, 2024
1 parent eb69394 commit 6539a50
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/by-name/ku/kustomizer/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
buildGoModule,
fetchFromGitHub,
lib,
}:
buildGoModule rec {
pname = "kustomizer";
version = "2.2.1";

src = fetchFromGitHub {
owner = "stefanprodan";
repo = "kustomizer";
rev = "v${version}";
hash = "sha256-/HNjBNUGueVRIn8rgvx03nTXF1mJSj/nptoP8/AecSM=";
};

vendorHash = "sha256-xGK2JTl/pmG4V85XAZY4PlKIk3bZUJ5mwipAGjS9miw=";

ldflags = [
"-s"
"-w"
];

subPackages = ["cmd/kustomizer"];

doCheck = false;

meta = with lib; {
description = "An experimental package manager for distributing Kubernetes configuration as OCI artifacts";
homepage = "https://github.com/stefanprodan/kustomizer";
license = licenses.asl20;
maintainers = with maintainers; [aldoborrero];
mainProgram = "kustomizer";
};
}
1 change: 1 addition & 0 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

# by-name / ku
kusion = callPackage ./by-name/ku/kusion {};
kustomizer = callPackage ./by-name/ku/kustomizer {};

# by-name / os
ospeak = callPackage ./by-name/os/ospeak {};
Expand Down

0 comments on commit 6539a50

Please sign in to comment.