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: d09738dd9070
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d9147c43d509
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 9, 2020

  1. verilog: unstable-2019-08-01 -> unstable-2020-08-24

    The build would previously fail due to a change in bison's behavior (see
    steveicarus/iverilog@5b699c1
    for more information). Updating to a more recent version fixes this
    issue.
    cole-h committed Sep 9, 2020
    Copy the full SHA
    339f624 View commit details
  2. Merge pull request #97513 from cole-h/verilog

    verilog: unstable-2019-08-01 -> unstable-2020-08-24
    worldofpeace authored Sep 9, 2020
    Copy the full SHA
    d9147c4 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/science/electronics/verilog/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/science/electronics/verilog/default.nix
Original file line number Diff line number Diff line change
@@ -4,13 +4,13 @@

stdenv.mkDerivation rec {
pname = "iverilog";
version = "unstable-2019-08-01";
version = "unstable-2020-08-24";

src = fetchFromGitHub {
owner = "steveicarus";
owner = "steveicarus";
repo = pname;
rev = "c383d2048c0bd15f5db083f14736400546fb6215";
sha256 = "1zs0gyhws0qa315magz3w5m45v97knczdgbf2zn4d7bdb7cv417c";
rev = "d8556e4c86e1465b68bdc8d5ba2056ba95a42dfd";
sha256 = "sha256-sT9j/0Q2FD5MOGpH/quMGvAuM7t7QavRHKD9lX7Elfs=";
};

enableParallelBuilding = true;