diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..8e158e6 --- /dev/null +++ b/shell.nix @@ -0,0 +1,13 @@ +{ pkgs ? import {} }: + +let + unstable = import (builtins.fetchTarball { + url = "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz"; + }) {}; +in +pkgs.mkShell { + buildInputs = [ + unstable.zig + pkgs.pciutils + ]; +}