summary refs log tree commit diff
path: root/pkgs/applications/science/electronics/verilog/default.nix
blob: 8f48879f76a3eb476797975905c1d08f06195f01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{stdenv, fetchurl, gperf, flex, bison}:

stdenv.mkDerivation rec {
  name = "verilog-0.9.3";

  src = fetchurl {
    url = "mirror://sourceforce/${name}.tar.gz";
    sha256 = "dd68c8ab874a93805d1e93fa76ee1e91fc0c7b20822ded3e57b6536cd8c0d1ba";
  };

  buildInputs = [ gperf flex bison ];

  meta = {
    description = "Icarus Verilog compiler";
    homepage = http://www.icarus.com;
    license = "GPLv2+";
    maintainers = with stdenv.lib.maintainers; [winden];
    platforms = with stdenv.lib.platforms; linux;
  };
}