From 622dcd3ea0c6fd11d22f5cc054f99127dd689328 Mon Sep 17 00:00:00 2001 From: Ezri Zhu Date: Wed, 4 Sep 2024 18:33:34 -0400 Subject: [PATCH] add shell.nix --- shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..3d3558a --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +{ pkgs ? import {}}: + +pkgs.mkShell { + buildInputs = with pkgs; [ + expect + mergerfs + attr + util-linux + ]; +}