Initial commit

This commit is contained in:
Nikolay Puzanov
2022-11-17 13:02:15 +03:00
commit a67cca5aa8
13 changed files with 361 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
let
iverilog-latest = callPackage /etc/nixos/programs/iverilog-latest.nix {};
in
mkShell {
packages = [ iverilog-latest gnumake ];
}