mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
23 lines
654 B
Nix
23 lines
654 B
Nix
{ stdenv, fetchurl, perl, flex, bison }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "verilator";
|
|
version = "4.034";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.veripool.org/ftp/${pname}-${version}.tgz";
|
|
sha256 = "02xqvl9ic21jpda0xldh4ihqwl4ss8389s8fklgx5d98xq37pval";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
buildInputs = [ perl flex bison ];
|
|
|
|
meta = {
|
|
description = "Fast and robust (System)Verilog simulator/compiler";
|
|
homepage = "https://www.veripool.org/wiki/verilator";
|
|
license = stdenv.lib.licenses.lgpl3;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with stdenv.lib.maintainers; [ thoughtpolice ];
|
|
};
|
|
}
|