it's been a while
This commit is contained in:
parent
9f90b00b25
commit
e44f6b083b
11 changed files with 78 additions and 4 deletions
14
shell.nix
Normal file
14
shell.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/d34a98666913267786d9ab4aa803a1fc75f81f4d.tar.gz") {} }:
|
||||
|
||||
pkgs.mkShell {
|
||||
buildInputs = [
|
||||
pkgs.yosys
|
||||
pkgs.nextpnr
|
||||
pkgs.bluespec
|
||||
pkgs.yosys-bluespec
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
echo "Dev environment for Manna Chip."
|
||||
'';
|
||||
}
|
Reference in a new issue