From 811c1cae9edd9c9b70daa645c1e8ba05ca2f6b72 Mon Sep 17 00:00:00 2001 From: Tom Herbers Date: Sat, 2 Oct 2021 13:50:37 +0200 Subject: [PATCH] nix-shell: add shell.nix --- shell.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..74601c8 --- /dev/null +++ b/shell.nix @@ -0,0 +1,17 @@ +let pkgs = import { }; +in +let + mesh-announce-python = pkgs.python3; + python-with-mesh-announce-packages = mesh-announce-python.withPackages (p: with p; [ + psutil + ]); +in +pkgs.mkShell { + nativeBuildInputs = [ + python-with-mesh-announce-packages + pkgs.git + pkgs.lsb-release + pkgs.ethtool + pkgs.batctl + ]; +}