From e441e0a6f13e8c1325e70e818b552c010e586f86 Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Mon, 19 Jul 2021 11:11:20 +0200 Subject: [PATCH] added basic shell.nix file to run on nixos --- shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..4fbaa51 --- /dev/null +++ b/shell.nix @@ -0,0 +1,10 @@ +with import {}; +with python38Packages; + +buildPythonPackage rec { + name = "mvt"; + src = ./.; + propagatedBuildInputs = [ pkgs.libusb1 libusb1 ]; + nativeBuildInputs = [ pkgs.libusb1 ]; +} +