verilator: 4.036 -> 4.040

Signed-off-by: Austin Seipp <aseipp@pobox.com>
wip/yesman
Austin Seipp 4 years ago
parent 1e451da386
commit 7cb1f36513
No known key found for this signature in database
GPG Key ID: 25D2038DEB08021D
  1. 23
      pkgs/applications/science/electronics/verilator/default.nix

@ -1,22 +1,29 @@
{ stdenv, fetchurl, perl, flex, bison }:
{ stdenv, fetchurl
, perl, flex, bison
}:
stdenv.mkDerivation rec {
pname = "verilator";
version = "4.036";
version = "4.040";
src = fetchurl {
url = "https://www.veripool.org/ftp/${pname}-${version}.tgz";
sha256 = "1sy02pgq3kvk8548l57hsh08vfbqdg8dghj8mwlybdi8fdjz4z1h";
sha256 = "1qy0wllsmxva3c838spxwmacxx36r3njxwhgp172m4l3829785bf";
};
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";
homepage = "https://www.veripool.org/wiki/verilator";
license = stdenv.lib.licenses.lgpl3;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ thoughtpolice ];
license = licenses.lgpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ thoughtpolice ];
};
}

Loading…
Cancel
Save