about summary refs log tree commit diff
path: root/pkgs/applications/science/electronics/verilog/default.nix
blob: 1f8f966b33c70cf96cb8e9825764b6ed9402ccd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, fetchFromGitHub, autoconf, gperf, flex, bison }:

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

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

  enableParallelBuilding = true;

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

  buildInputs = [ autoconf gperf flex bison ];

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