10 lines
181 B
Nix
10 lines
181 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
with pkgs;
|
|
let
|
|
iverilog-latest = callPackage /etc/nixos/programs/iverilog-latest.nix {};
|
|
in
|
|
mkShell {
|
|
packages = [ iverilog-latest gnumake ];
|
|
}
|