add kubectl and helm

This commit is contained in:
zimbatm 2019-01-19 18:33:18 +01:00
parent 5d9a795ac3
commit dfe14978a4
No known key found for this signature in database
GPG key ID: 71BAF6D40C1D63D7
4 changed files with 51 additions and 11 deletions

View file

@ -1,14 +1,12 @@
_: pkgs: {
# docker images must be lower-cased
docker-nixpkgs = rec {
curl = pkgs.callPackage ./curl {};
kubectl = pkgs.callPackage ./kubectl {};
kubernetes-helm = pkgs.callPackage ./kubernetes-helm {};
nix = pkgs.callPackage ./nix {};
# docker images must be lower-cased
nix-unstable = nix.overrideAttrs (self: {
nix = pkgs.nixUnstable;
});
nix-unstable = nix.overrideAttrs (self: { nix = pkgs.nixUnstable; });
};
}