From b67a600c78340acfc92dbfd66f6f68a3857383c1 Mon Sep 17 00:00:00 2001 From: Ezri Zhu Date: Wed, 4 Sep 2024 18:34:48 -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 00000000..3d3558ad --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +{ pkgs ? import {}}: + +pkgs.mkShell { + buildInputs = with pkgs; [ + expect + mergerfs + attr + util-linux + ]; +}