Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 199c00270048
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c7ebdc8123d4
Choose a head ref
  • 1 commit
  • 1 file changed
  • 2 contributors

Commits on Jan 16, 2021

  1. verilator: 4.100 -> 4.108

    Co-authored-by: Austin Seipp <aseipp@pobox.com>
    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    yangm2 and thoughtpolice committed Jan 16, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    c7ebdc8 View commit details
Showing with 11 additions and 4 deletions.
  1. +11 −4 pkgs/applications/science/electronics/verilator/default.nix
15 changes: 11 additions & 4 deletions pkgs/applications/science/electronics/verilator/default.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,31 @@
{ lib, stdenv, fetchurl
, perl, flex, bison
, perl, flex, bison, python3
}:

stdenv.mkDerivation rec {
pname = "verilator";
version = "4.100";
version = "4.108";

src = fetchurl {
url = "https://www.veripool.org/ftp/${pname}-${version}.tgz";
sha256 = "0vg1gk1hqlnz74gfpf57588758myxvhqzi37yl4vqjcq40r83nr2";
sha256 = "00i7am41w9v4smhl64z7s95wdb55f684y89mc0hbc07j1ggc33lf";
};

enableParallelBuilding = true;
buildInputs = [ perl ];
nativeBuildInputs = [ flex bison ];
nativeBuildInputs = [ flex bison python3 ];

# these tests need some interpreter paths patched early on...
# see https://github.com/NixOS/nix/issues/1205
doCheck = false;
checkTarget = "test";

postPatch = ''
patchShebangs \
src/flexfix \
src/vlcovgen
'';

meta = with lib; {
description = "Fast and robust (System)Verilog simulator/compiler";
homepage = "https://www.veripool.org/wiki/verilator";