2018-05-04 03:05:41 +02:00
|
|
|
{ stdenv, fetchFromGitHub
|
2018-08-09 02:28:18 +02:00
|
|
|
, pkgconfig, bison, flex
|
|
|
|
, tcl, readline, libffi, python3
|
2019-08-14 01:46:42 +02:00
|
|
|
, protobuf, zlib
|
2017-10-16 09:34:04 +02:00
|
|
|
}:
|
2015-12-29 17:31:18 +01:00
|
|
|
|
2018-02-14 07:15:48 +01:00
|
|
|
with builtins;
|
|
|
|
|
2015-12-29 17:31:18 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-14 01:46:42 +02:00
|
|
|
pname = "yosys";
|
2019-08-22 08:49:45 +02:00
|
|
|
version = "2019.08.21";
|
2015-12-29 17:31:18 +01:00
|
|
|
|
|
|
|
srcs = [
|
|
|
|
(fetchFromGitHub {
|
2018-02-04 18:59:19 +01:00
|
|
|
owner = "yosyshq";
|
2017-12-07 05:04:38 +01:00
|
|
|
repo = "yosys";
|
2019-08-22 08:49:45 +02:00
|
|
|
rev = "fe1b2337fd7950e1d563be5b8ccbaa81688261e4";
|
|
|
|
sha256 = "0z7sngc2z081yyhzh8c2kchg48sp2333hn1wa94q5vsgnyzlqrdw";
|
2017-12-07 05:04:38 +01:00
|
|
|
name = "yosys";
|
2015-12-29 17:31:18 +01:00
|
|
|
})
|
2018-02-14 07:15:48 +01:00
|
|
|
|
|
|
|
# NOTE: the version of abc used here is synchronized with
|
|
|
|
# the one in the yosys Makefile of the version above;
|
|
|
|
# keep them the same for quality purposes.
|
2018-05-04 03:05:41 +02:00
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "berkeley-abc";
|
2017-12-07 05:04:38 +01:00
|
|
|
repo = "abc";
|
2019-08-14 01:46:42 +02:00
|
|
|
rev = "5776ad07e7247993976bffed4802a5737c456782";
|
|
|
|
sha256 = "1la4idmssg44rp6hd63sd5vybvs3vr14yzvwcg03ls37p39cslnl";
|
2017-12-07 05:04:38 +01:00
|
|
|
name = "yosys-abc";
|
2015-12-29 17:31:18 +01:00
|
|
|
})
|
|
|
|
];
|
|
|
|
sourceRoot = "yosys";
|
|
|
|
|
2017-10-16 09:34:04 +02:00
|
|
|
enableParallelBuilding = true;
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-08-14 01:46:42 +02:00
|
|
|
buildInputs = [ tcl readline libffi python3 bison flex protobuf zlib ];
|
2018-08-09 02:28:18 +02:00
|
|
|
|
|
|
|
makeFlags = [ "ENABLE_PROTOBUF=1" ];
|
2018-02-14 07:15:48 +01:00
|
|
|
|
|
|
|
patchPhase = ''
|
2018-04-11 22:08:51 +02:00
|
|
|
substituteInPlace ../yosys-abc/Makefile \
|
|
|
|
--replace 'CC := gcc' ""
|
2018-02-14 07:15:48 +01:00
|
|
|
substituteInPlace ./Makefile \
|
2018-04-11 22:08:51 +02:00
|
|
|
--replace 'CXX = clang' "" \
|
|
|
|
--replace 'ABCMKARGS = CC="$(CXX)"' 'ABCMKARGS =' \
|
2018-02-14 07:15:48 +01:00
|
|
|
--replace 'echo UNKNOWN' 'echo ${substring 0 10 (elemAt srcs 0).rev}'
|
|
|
|
'';
|
|
|
|
|
2015-12-29 17:31:18 +01:00
|
|
|
preBuild = ''
|
2016-08-19 03:30:21 +02:00
|
|
|
chmod -R u+w ../yosys-abc
|
|
|
|
ln -s ../yosys-abc abc
|
2018-04-11 22:08:51 +02:00
|
|
|
make config-${if stdenv.cc.isClang or false then "clang" else "gcc"}
|
2015-12-29 17:31:18 +01:00
|
|
|
echo 'ABCREV := default' >> Makefile.conf
|
|
|
|
makeFlags="PREFIX=$out $makeFlags"
|
2018-08-09 02:28:18 +02:00
|
|
|
|
|
|
|
# we have to do this ourselves for some reason...
|
|
|
|
(cd misc && ${protobuf}/bin/protoc --cpp_out ../backends/protobuf/ ./yosys.proto)
|
2015-12-29 17:31:18 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Framework for RTL synthesis tools";
|
|
|
|
longDescription = ''
|
|
|
|
Yosys is a framework for RTL synthesis tools. It currently has
|
|
|
|
extensive Verilog-2005 support and provides a basic set of
|
|
|
|
synthesis algorithms for various application domains.
|
|
|
|
Yosys can be adapted to perform any synthesis job by combining
|
|
|
|
the existing passes (algorithms) using synthesis scripts and
|
|
|
|
adding additional passes as needed by extending the yosys C++
|
|
|
|
code base.
|
|
|
|
'';
|
2017-10-16 09:34:04 +02:00
|
|
|
homepage = http://www.clifford.at/yosys/;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
2019-08-22 08:49:45 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ shell thoughtpolice emily ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2015-12-29 17:31:18 +01:00
|
|
|
};
|
|
|
|
}
|