verilator: 4.036 -> 4.040

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2020-08-23 10:34:00 -05:00
parent 1e451da386
commit 7cb1f36513
No known key found for this signature in database
GPG Key ID: 25D2038DEB08021D
1 changed files with 15 additions and 8 deletions

View File

@ -1,22 +1,29 @@
{ stdenv, fetchurl, perl, flex, bison }: { stdenv, fetchurl
, perl, flex, bison
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "verilator"; pname = "verilator";
version = "4.036"; version = "4.040";
src = fetchurl { src = fetchurl {
url = "https://www.veripool.org/ftp/${pname}-${version}.tgz"; url = "https://www.veripool.org/ftp/${pname}-${version}.tgz";
sha256 = "1sy02pgq3kvk8548l57hsh08vfbqdg8dghj8mwlybdi8fdjz4z1h"; sha256 = "1qy0wllsmxva3c838spxwmacxx36r3njxwhgp172m4l3829785bf";
}; };
enableParallelBuilding = true; enableParallelBuilding = true;
buildInputs = [ perl flex bison ]; buildInputs = [ perl ];
nativeBuildInputs = [ flex bison ];
meta = { # these tests need some interpreter paths patched early on...
doCheck = false;
checkTarget = "test";
meta = with stdenv.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";
license = stdenv.lib.licenses.lgpl3; license = licenses.lgpl3;
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
maintainers = with stdenv.lib.maintainers; [ thoughtpolice ]; maintainers = with maintainers; [ thoughtpolice ];
}; };
} }