silice-learning/shell.nix

16 lines
267 B
Nix
Raw Permalink Normal View History

2023-06-24 15:01:18 +02:00
{ pkgs ? import <nixpkgs> {} }:
let
unstable = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz") { };
in
pkgs.mkShell {
buildInputs = with pkgs; [
unstable.silice
icestorm
yosys
nextpnr
dfu-util
];
}