verilator: 3.884 -> 3.900

This commit is contained in:
Robin Gloster 2017-02-27 15:00:25 +01:00
parent 65a2e307f0
commit 4df663a9a2
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882

View File

@ -1,16 +1,16 @@
{ stdenv, fetchurl, perl, flex, bison }:
{ stdenv, fetchurl, perl, flex_2_6_1, bison }:
stdenv.mkDerivation rec {
name = "verilator-${version}";
version = "3.884";
version = "3.900";
src = fetchurl {
url = "http://www.veripool.org/ftp/${name}.tgz";
sha256 = "1j159dg7m2ych5lwglb1qq1fgqh3kwhaa1r3jx84qdisg0icln2y";
sha256 = "0yvbibcysdiw6mphda0lfs56wz6v450px2420x0hbd3rc7k53s2b";
};
enableParallelBuilding = true;
buildInputs = [ perl flex bison ];
buildInputs = [ perl flex_2_6_1 bison ];
meta = {
description = "Fast and robust (System)Verilog simulator/compiler";