mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, perl, flex, bison, python3, autoconf
|
|
, which, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "verilator";
|
|
version = "5.002";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-RNoKAEF7zl+WqqbxGP/VvdQqQP8VI3hoQku3b/g0XpU=";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
buildInputs = [ perl ];
|
|
nativeBuildInputs = [ flex bison python3 autoconf ];
|
|
nativeCheckInputs = [ which ];
|
|
|
|
doCheck = stdenv.isLinux; # darwin tests are broken for now...
|
|
checkTarget = "test";
|
|
|
|
preConfigure = "autoconf";
|
|
|
|
preCheck = ''
|
|
patchShebangs \
|
|
src/flexfix \
|
|
src/vlcovgen \
|
|
bin/verilator \
|
|
bin/verilator_coverage \
|
|
test_regress/driver.pl \
|
|
test_regress/t/*.pl
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|