Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
99 lines
2.2 KiB
Nix
99 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
autoconf,
|
|
bison,
|
|
bzip2,
|
|
flex,
|
|
gperf,
|
|
ncurses,
|
|
perl,
|
|
python3,
|
|
readline,
|
|
zlib,
|
|
buildPackages,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "iverilog";
|
|
version = "12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "steveicarus";
|
|
repo = "iverilog";
|
|
rev = "v${lib.replaceStrings [ "." ] [ "_" ] version}";
|
|
hash = "sha256-J9hedSmC6mFVcoDnXBtaTXigxrSCFa2AhhFd77ueo7I=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoconf
|
|
bison
|
|
flex
|
|
gperf
|
|
];
|
|
|
|
CC_FOR_BUILD = "${buildPackages.stdenv.cc}/bin/cc";
|
|
CXX_FOR_BUILD = "${buildPackages.stdenv.cc}/bin/c++";
|
|
|
|
patches = [
|
|
# NOTE(jleightcap): `-Werror=format-security` warning patched shortly after release, backport the upstream fix
|
|
(fetchpatch {
|
|
name = "format-security";
|
|
url = "https://github.com/steveicarus/iverilog/commit/23e51ef7a8e8e4ba42208936e0a6a25901f58c65.patch";
|
|
hash = "sha256-fMWfBsCl2fuXe+6AR10ytb8QpC84bXlP5RSdrqsWzEk=";
|
|
})
|
|
];
|
|
|
|
buildInputs = [
|
|
bzip2
|
|
ncurses
|
|
readline
|
|
zlib
|
|
];
|
|
|
|
preConfigure = "sh autoconf.sh";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
env = lib.optionalAttrs stdenv.hostPlatform.isDarwin {
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration";
|
|
};
|
|
|
|
# NOTE(jleightcap): the `make check` target only runs a "Hello, World"-esque sanity check.
|
|
# the tests in the doInstallCheck phase run a full regression test suite.
|
|
# however, these tests currently fail upstream on aarch64
|
|
# (see https://github.com/steveicarus/iverilog/issues/917)
|
|
# so disable the full suite for now.
|
|
doCheck = true;
|
|
doInstallCheck = !stdenv.hostPlatform.isAarch64;
|
|
|
|
nativeInstallCheckInputs = [
|
|
perl
|
|
(python3.withPackages (
|
|
pp: with pp; [
|
|
docopt
|
|
]
|
|
))
|
|
];
|
|
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
export PATH="$PATH:$out/bin"
|
|
sh .github/test.sh
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Icarus Verilog compiler";
|
|
homepage = "https://steveicarus.github.io/iverilog";
|
|
license = with licenses; [
|
|
gpl2Plus
|
|
lgpl21Plus
|
|
];
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|