1
0
Fork 0
mirror of https://gitlab.com/oecis/charts.git synced 2025-04-28 13:03:38 +02:00
charts/shell.nix
2023-08-27 15:38:50 +02:00

9 lines
137 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.kubernetes-helm
pkgs.pre-commit
pkgs.helm-docs
];
}