3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/electronics/verilator/default.nix
Vegard Strand Lende 41f927b433
verilator: 4.210 -> 4.218 (#157122)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-01-29 02:30:41 +01:00

43 lines
1,010 B
Nix

{ lib, stdenv, fetchFromGitHub
, perl, flex, bison, python3, autoconf
}:
stdenv.mkDerivation rec {
pname = "verilator";
version = "4.218";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "sha256-FukC60z7Y3bb3I/dgzqCh6kFP6DDBOGi0M8IIZ50P3g=";
};
enableParallelBuilding = true;
buildInputs = [ perl ];
nativeBuildInputs = [ flex bison python3 autoconf ];
# these tests need some interpreter paths patched early on...
# see https://github.com/NixOS/nix/issues/1205
doCheck = false;
checkTarget = "test";
preConfigure = ''
autoconf
'';
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 = with licenses; [ lgpl3Only artistic2 ];
platforms = platforms.unix;
maintainers = with maintainers; [ thoughtpolice ];
};
}