verilator: 4.100 -> 4.108

Co-authored-by: Austin Seipp <aseipp@pobox.com>
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
yangm2 2021-01-12 20:15:10 -08:00 committed by Austin Seipp
parent 199c002700
commit c7ebdc8123
No known key found for this signature in database
GPG Key ID: 25D2038DEB08021D

View File

@ -1,24 +1,31 @@
{ lib, stdenv, fetchurl { lib, stdenv, fetchurl
, perl, flex, bison , perl, flex, bison, python3
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "verilator"; pname = "verilator";
version = "4.100"; version = "4.108";
src = fetchurl { src = fetchurl {
url = "https://www.veripool.org/ftp/${pname}-${version}.tgz"; url = "https://www.veripool.org/ftp/${pname}-${version}.tgz";
sha256 = "0vg1gk1hqlnz74gfpf57588758myxvhqzi37yl4vqjcq40r83nr2"; sha256 = "00i7am41w9v4smhl64z7s95wdb55f684y89mc0hbc07j1ggc33lf";
}; };
enableParallelBuilding = true; enableParallelBuilding = true;
buildInputs = [ perl ]; buildInputs = [ perl ];
nativeBuildInputs = [ flex bison ]; nativeBuildInputs = [ flex bison python3 ];
# these tests need some interpreter paths patched early on... # these tests need some interpreter paths patched early on...
# see https://github.com/NixOS/nix/issues/1205
doCheck = false; doCheck = false;
checkTarget = "test"; checkTarget = "test";
postPatch = ''
patchShebangs \
src/flexfix \
src/vlcovgen
'';
meta = with lib; { meta = with lib; {
description = "Fast and robust (System)Verilog simulator/compiler"; description = "Fast and robust (System)Verilog simulator/compiler";
homepage = "https://www.veripool.org/wiki/verilator"; homepage = "https://www.veripool.org/wiki/verilator";