This repository has been archived on 2026-07-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
K1NG-Driver/shell.nix
T
2026-07-28 22:28:01 +02:00

11 lines
131 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
gcc
gnumake
libusb1
pkg-config
];
}