From 2ea3adef12df0863e87e516cd740f6adc1449228 Mon Sep 17 00:00:00 2001 From: utox39 Date: Sat, 15 Nov 2025 16:06:25 +0100 Subject: [PATCH] build: add shell.nix --- shell.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 shell.nix 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 + ]; +}