From eb64f1ccf8072e86a71139b8fbac6c234884b73d Mon Sep 17 00:00:00 2001 From: sysnet Date: Sat, 31 May 2025 23:35:05 +0000 Subject: [PATCH] Add shell.nix --- shell.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..c2103fa --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{ pkgs ? import {} }: +# necessary for those based nixos users who dont want to install system-wide deps +pkgs.mkShell { + nativeBuildInputs = with pkgs; [ + openssl + file + coreutils + minio-client + ]; +} +