mirror of
https://gitlab.com/oecis/charts.git
synced 2024-11-15 00:28:59 +00:00
10 lines
137 B
Nix
10 lines
137 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.kubernetes-helm
|
|
pkgs.pre-commit
|
|
pkgs.helm-docs
|
|
];
|
|
}
|