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

Commits on Aug 2, 2019

  1. verilog: 2019.03.27 -> 2019.08.1

    Fixes the build, see: steveicarus/iverilog#247
    JohnAZoidberg committed Aug 2, 2019
    Copy the full SHA
    8b32741 View commit details
  2. verilog: Add optional dependencies

    Increases the closure size by just 4MB.
    JohnAZoidberg committed Aug 2, 2019
    Copy the full SHA
    9c50ec6 View commit details
  3. verilog: 2019.03.27 -> 2019.08.1 (#65730)

    verilog: 2019.03.27 -> 2019.08.1
    Mic92 authored Aug 2, 2019
    Copy the full SHA
    eddd2f8 View commit details
Showing with 22 additions and 13 deletions.
  1. +22 −13 pkgs/applications/science/electronics/verilog/default.nix
35 changes: 22 additions & 13 deletions pkgs/applications/science/electronics/verilog/default.nix
Original file line number Diff line number Diff line change
@@ -1,31 +1,40 @@
{ stdenv, fetchFromGitHub, autoconf, gperf, flex, bison }:
{ stdenv, fetchFromGitHub, autoconf, gperf, flex, bison, readline, ncurses
, bzip2, zlib
}:

stdenv.mkDerivation rec {
name = "iverilog-${version}";
version = "2019.03.27";
pname = "iverilog";
version = "unstable-2019-08-01";

src = fetchFromGitHub {
owner = "steveicarus";
repo = "iverilog";
rev = "a9388a895eb85a9d7f2924b89f839f94e1b6d7c4";
sha256 = "01d48sy3pzg9x1xpczqrsii2ckrvgnrfj720wiz22jdn90nirhhr";
repo = pname;
rev = "c383d2048c0bd15f5db083f14736400546fb6215";
sha256 = "1zs0gyhws0qa315magz3w5m45v97knczdgbf2zn4d7bdb7cv417c";
};

enableParallelBuilding = true;

patchPhase = ''
prePatch = ''
substituteInPlace configure.in \
--replace "AC_CHECK_LIB(termcap, tputs)" "AC_CHECK_LIB(termcap, tputs)"
'';

preConfigure = ''
chmod +x $PWD/autoconf.sh
$PWD/autoconf.sh
'';

buildInputs = [ autoconf gperf flex bison ];
nativeBuildInputs = [ autoconf gperf flex bison ];

buildInputs = [ readline ncurses bzip2 zlib ];

meta = {
meta = with stdenv.lib; {
description = "Icarus Verilog compiler";
repositories.git = https://github.com/steveicarus/iverilog.git;
homepage = http://www.icarus.com;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [winden];
platforms = with stdenv.lib.platforms; linux;
homepage = "http://iverilog.icarus.com/";
license = licenses.lgpl21;
maintainers = with maintainers; [ winden ];
platforms = platforms.linux;
};
}