From 80b1c76c59ee52f153d8aebe2ba2b10d28a3db02 Mon Sep 17 00:00:00 2001 From: mark Date: Sun, 3 Sep 2023 13:12:22 -0700 Subject: [PATCH] Added 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..dff6d69 --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +let + pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/f155f0cf4ea43c4e3c8918d2d327d44777b6cad4.tar.gz") {}; +in pkgs.mkShell { + buildInputs = with pkgs; [ + cargo + rustc + rustfmt + m4 + ]; +} +