From f3fff84952c547d1a77207aace23647695204e76 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Thu, 2 May 2024 13:30:28 +0100 Subject: [PATCH] feat: add devshell.nix --- devshell.nix | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 devshell.nix diff --git a/devshell.nix b/devshell.nix new file mode 100644 index 0000000..8e405a4 --- /dev/null +++ b/devshell.nix @@ -0,0 +1,51 @@ +{ + mkShell, + cdrtools, + curl, + lsb-release, + git, + gnugrep, + gnused, + jq, + nixpkgs-fmt, + procps, + python3, + qemu, + socat, + swtpm, + unzip, + usbutils, + util-linux, + wget, + xdg-user-dirs, + xrandr, + zsync, +}: +mkShell { + strictDeps = true; + + nativeBuildInputs = [ + cdrtools + curl + lsb-release + git + gnugrep + gnused + jq + nixpkgs-fmt + procps + python3 + qemu + socat + swtpm + unzip + usbutils + util-linux + wget + xdg-user-dirs + xrandr + zsync + ]; + + buildInputs = []; +}