added basic shell.nix file to run on nixos

This commit is contained in:
Anton Lydike 2021-07-19 11:11:20 +02:00
parent add5b1640e
commit e441e0a6f1

10
shell.nix Normal file
View File

@ -0,0 +1,10 @@
with import <nixpkgs> {};
with python38Packages;
buildPythonPackage rec {
name = "mvt";
src = ./.;
propagatedBuildInputs = [ pkgs.libusb1 libusb1 ];
nativeBuildInputs = [ pkgs.libusb1 ];
}