verilator 5.006 -> 5.008 https://repology.org/project/verilator/versions attrpath: verilator Checking auto update branch... No auto update branch exists Old version 5.006" not present in master derivation file with contents: { lib, stdenv, fetchFromGitHub , perl, flex, bison, python3, autoconf , which, cmake, help2man , makeWrapper, glibcLocales }: stdenv.mkDerivation rec { pname = "verilator"; version = "5.008"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; hash = "sha256-+eJBGvQOk5w+PyUF3aieuXZVeKNS4cKQqHnJibKwFnM="; }; enableParallelBuilding = true; buildInputs = [ perl ]; nativeBuildInputs = [ makeWrapper flex bison python3 autoconf help2man ]; nativeCheckInputs = [ which ]; doCheck = stdenv.isLinux; # darwin tests are broken for now... checkTarget = "test"; preConfigure = "autoconf"; postPatch = '' patchShebangs bin/* src/{flexfix,vlcovgen} test_regress/{driver.pl,t/*.pl} ''; postInstall = lib.optionalString stdenv.isLinux '' for x in $(ls $out/bin/verilator*); do wrapProgram "$x" --set LOCALE_ARCHIVE "${glibcLocales}/lib/locale/locale-archive" done ''; 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 ]; }; }