6 lines
90 B
Nix
6 lines
90 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
with pkgs; mkShell {
|
|
packages = [ verilog gnumake ];
|
|
}
|