Files
zigfetch/shell.nix
2025-11-15 16:06:25 +01:00

14 lines
245 B
Nix

{ 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
];
}