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