verilator: 4.210 -> 4.218 (#157122)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
main
Vegard Strand Lende 2 years ago committed by GitHub
parent f288a031bc
commit 41f927b433
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      pkgs/applications/science/electronics/verilator/default.nix

@ -1,25 +1,31 @@
{ lib, stdenv, fetchurl
, perl, flex, bison, python3
{ lib, stdenv, fetchFromGitHub
, perl, flex, bison, python3, autoconf
}:
stdenv.mkDerivation rec {
pname = "verilator";
version = "4.210";
version = "4.218";
src = fetchurl {
url = "https://www.veripool.org/ftp/${pname}-${version}.tgz";
sha256 = "sha256-KoIfJeV2aITnwiB2eQgQo4ZyXfMe6erFiGKXezR+IBg=";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "sha256-FukC60z7Y3bb3I/dgzqCh6kFP6DDBOGi0M8IIZ50P3g=";
};
enableParallelBuilding = true;
buildInputs = [ perl ];
nativeBuildInputs = [ flex bison python3 ];
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 \

Loading…
Cancel
Save