From 4b6f9f315efc920a09091a7b5564dab54c044dc1 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Tue, 18 Jul 2023 10:20:32 +1200 Subject: [PATCH] Add shell.nix --- shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..3ace6c2 --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +{ pkgs ? import {} }: +pkgs.mkShell { + nativeBuildInputs = with pkgs.buildPackages; [ + bmake + gcc + readline + ]; + shellHook = "alias make=bmake"; +}