c7ebdc8123
Co-authored-by: Austin Seipp <aseipp@pobox.com> Signed-off-by: Austin Seipp <aseipp@pobox.com>
37 lines
921 B
Nix
37 lines
921 B
Nix
{ lib, stdenv, fetchurl
|
|
, perl, flex, bison, python3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "verilator";
|
|
version = "4.108";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.veripool.org/ftp/${pname}-${version}.tgz";
|
|
sha256 = "00i7am41w9v4smhl64z7s95wdb55f684y89mc0hbc07j1ggc33lf";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
buildInputs = [ perl ];
|
|
nativeBuildInputs = [ flex bison python3 ];
|
|
|
|
# these tests need some interpreter paths patched early on...
|
|
# see https://github.com/NixOS/nix/issues/1205
|
|
doCheck = false;
|
|
checkTarget = "test";
|
|
|
|
postPatch = ''
|
|
patchShebangs \
|
|
src/flexfix \
|
|
src/vlcovgen
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Fast and robust (System)Verilog simulator/compiler";
|
|
homepage = "https://www.veripool.org/wiki/verilator";
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
};
|
|
}
|