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
2026-07-28 23:20:57 +02:00

12 lines
144 B
Nix

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