Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

verilator: 4.100 -> 4.108 #109249

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 5 additions & 4 deletions pkgs/applications/science/electronics/verilator/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
{ lib, stdenv, fetchurl
, perl, flex, bison
, perl, flex, bison, python3
}:

stdenv.mkDerivation rec {
pname = "verilator";
version = "4.100";
version = "4.108";

src = fetchurl {
url = "https://www.veripool.org/ftp/${pname}-${version}.tgz";
sha256 = "0vg1gk1hqlnz74gfpf57588758myxvhqzi37yl4vqjcq40r83nr2";
sha256 = "00i7am41w9v4smhl64z7s95wdb55f684y89mc0hbc07j1ggc33lf";
};

enableParallelBuilding = true;
buildInputs = [ perl ];
buildInputs = [ perl python3 ];
nativeBuildInputs = [ flex bison ];

# these tests need some interpreter paths patched early on...
# see https://github.com/NixOS/nix/issues/1205
doCheck = false;
yangm2 marked this conversation as resolved.
Show resolved Hide resolved
checkTarget = "test";

Expand Down