2010-11-25 22:01:14 +00:00
|
|
|
{stdenv, fetchurl, gperf, flex, bison}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-09 09:30:43 +00:00
|
|
|
name = "verilog-0.9.7";
|
2010-11-25 22:01:14 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-11-30 11:24:12 +00:00
|
|
|
url = "mirror://sourceforge/iverilog/${name}.tar.gz";
|
2013-12-09 09:30:43 +00:00
|
|
|
sha256 = "0m3liqw7kq24vn7k8wvi630ljz0awz23r3sd4rcklk7vgghp4pks";
|
2010-11-25 22:01:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ gperf flex bison ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Icarus Verilog compiler";
|
2013-12-09 22:51:04 +00:00
|
|
|
repositories.git = https://github.com/steveicarus/iverilog.git;
|
2010-11-25 22:01:14 +00:00
|
|
|
homepage = http://www.icarus.com;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2010-11-25 22:01:14 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [winden];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|