fpga/shell.nix
2026-02-03 14:26:16 +01:00

15 lines
295 B
Nix

{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs;[
(python3.withPackages (ps : [ps.apycula]))
yosys
nextpnr
openfpgaloader
iverilog
gnumake
xdot
verilator
gtkwave
pulseview
];
}