22 lines
481 B
Nix
22 lines
481 B
Nix
|
|
{ callPackage }:
|
||
|
|
|
||
|
|
{
|
||
|
|
helm-cm-push = callPackage ./helm-cm-push.nix { };
|
||
|
|
|
||
|
|
helm-diff = callPackage ./helm-diff.nix { };
|
||
|
|
|
||
|
|
helm-dt = callPackage ./helm-dt.nix { };
|
||
|
|
|
||
|
|
helm-git = callPackage ./helm-git.nix { };
|
||
|
|
|
||
|
|
helm-mapkubeapis = callPackage ./helm-mapkubeapis.nix { };
|
||
|
|
|
||
|
|
helm-s3 = callPackage ./helm-s3.nix { };
|
||
|
|
|
||
|
|
helm-secrets = callPackage ./helm-secrets.nix { };
|
||
|
|
|
||
|
|
helm-schema = callPackage ./helm-schema.nix { };
|
||
|
|
|
||
|
|
helm-unittest = callPackage ./helm-unittest.nix { };
|
||
|
|
}
|