Files
verilog-playground/_template_iverilog/shell-latest.nix

10 lines
181 B
Nix
Raw Normal View History

2022-11-17 13:02:15 +03:00
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
let
iverilog-latest = callPackage /etc/nixos/programs/iverilog-latest.nix {};
in
mkShell {
packages = [ iverilog-latest gnumake ];
}