From 19cd24d2920736dd9598811f91c566b18ca61713 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Mon, 7 Mar 2022 22:10:28 -0800 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 0000000000000000000000000000000000000000..d0a0842bbe26ec36a2889c26e96f0de9a44db461 --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +with import {}; + +pkgs.mkShell { + nativeBuildInputs = with pkgs; [ + git + mercurial + wget unzip gnutar + ]; + + hardeningDisable = [ "all" ]; +} -- 2.54.0