it's been a while

This commit is contained in:
Yehowshua Immanuel 2024-03-20 02:25:31 -04:00
parent 9f90b00b25
commit e44f6b083b
11 changed files with 78 additions and 4 deletions

14
shell.nix Normal file
View 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."
'';
}