2010-11-25 23:01:14 +01:00
|
|
|
{stdenv, fetchurl, gperf, flex, bison}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "verilog-0.9.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2010-11-30 12:24:12 +01:00
|
|
|
url = "mirror://sourceforge/iverilog/${name}.tar.gz";
|
2010-11-25 23:01:14 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|