build: add shell.nix

This commit is contained in:
utox39
2025-11-15 16:06:25 +01:00
parent b4b92abcb5
commit 2ea3adef12

13
shell.nix Normal file
View File

@@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> {} }:
let
unstable = import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz";
}) {};
in
pkgs.mkShell {
buildInputs = [
unstable.zig
pkgs.pciutils
];
}