diff options
Diffstat (limited to 'app/shell.nix')
-rw-r--r-- | app/shell.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/shell.nix b/app/shell.nix new file mode 100644 index 0000000..c9b8053 --- /dev/null +++ b/app/shell.nix @@ -0,0 +1,15 @@ +{ + pkgs ? import <nixpkgs> {} +}: + +with pkgs; mkShell { + nativeBuildInputs = [ + nomad + docker-compose + python39Packages.pip + python39Packages.ldap + python39Packages.consul + python39Packages.passlib + ]; +} + |