2018-05-04 01:05:41 +00:00
|
|
|
{ stdenv, fetchFromGitHub
|
2018-08-09 00:28:18 +00:00
|
|
|
, pkgconfig, bison, flex
|
|
|
|
, tcl, readline, libffi, python3
|
|
|
|
, protobuf
|
2017-10-16 07:34:04 +00:00
|
|
|
}:
|
2015-12-29 16:31:18 +00:00
|
|
|
|
2018-02-14 06:15:48 +00:00
|
|
|
with builtins;
|
|
|
|
|
2015-12-29 16:31:18 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "yosys-${version}";
|
2018-08-09 00:28:18 +00:00
|
|
|
version = "2018.08.08";
|
2015-12-29 16:31:18 +00:00
|
|
|
|
|
|
|
srcs = [
|
|
|
|
(fetchFromGitHub {
|
2018-02-04 17:59:19 +00:00
|
|
|
owner = "yosyshq";
|
2017-12-07 04:04:38 +00:00
|
|
|
repo = "yosys";
|
2018-08-09 00:28:18 +00:00
|
|
|
rev = "93efbd5d158e374a0abe2afb06484ccc14aa2c88";
|
|
|
|
sha256 = "13y7rzpykihal789hyibg629gwj5bh1s0782y5xxj6jlg0bc9ly8";
|
2017-12-07 04:04:38 +00:00
|
|
|
name = "yosys";
|
2015-12-29 16:31:18 +00:00
|
|
|
})
|
2018-02-14 06:15:48 +00: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 01:05:41 +00:00
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "berkeley-abc";
|
2017-12-07 04:04:38 +00:00
|
|
|
repo = "abc";
|
2018-08-09 00:28:18 +00:00
|
|
|
rev = "ae6716b064c842f45109a88e84dca71fe4cc311f";
|
|
|
|
sha256 = "0g39k16dmrl6q73q39yr5yd9r4rcliz5zxzbnwzh29z9xwi6ipw8";
|
2017-12-07 04:04:38 +00:00
|
|
|
name = "yosys-abc";
|
2015-12-29 16:31:18 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
sourceRoot = "yosys";
|
|
|
|
|
2017-10-16 07:34:04 +00:00
|
|
|
enableParallelBuilding = true;
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-08-09 00:28:18 +00:00
|
|
|
buildInputs = [ tcl readline libffi python3 bison flex protobuf ];
|
|
|
|
|
|
|
|
makeFlags = [ "ENABLE_PROTOBUF=1" ];
|
2018-02-14 06:15:48 +00:00
|
|
|
|
|
|
|
patchPhase = ''
|
2018-04-11 20:08:51 +00:00
|
|
|
substituteInPlace ../yosys-abc/Makefile \
|
|
|
|
--replace 'CC := gcc' ""
|
2018-02-14 06:15:48 +00:00
|
|
|
substituteInPlace ./Makefile \
|
2018-04-11 20:08:51 +00:00
|
|
|
--replace 'CXX = clang' "" \
|
|
|
|
--replace 'ABCMKARGS = CC="$(CXX)"' 'ABCMKARGS =' \
|
2018-02-14 06:15:48 +00:00
|
|
|
--replace 'echo UNKNOWN' 'echo ${substring 0 10 (elemAt srcs 0).rev}'
|
|
|
|
'';
|
|
|
|
|
2015-12-29 16:31:18 +00:00
|
|
|
preBuild = ''
|
2016-08-19 01:30:21 +00:00
|
|
|
chmod -R u+w ../yosys-abc
|
|
|
|
ln -s ../yosys-abc abc
|
2018-04-11 20:08:51 +00:00
|
|
|
make config-${if stdenv.cc.isClang or false then "clang" else "gcc"}
|
2015-12-29 16:31:18 +00:00
|
|
|
echo 'ABCREV := default' >> Makefile.conf
|
|
|
|
makeFlags="PREFIX=$out $makeFlags"
|
2018-08-09 00:28:18 +00:00
|
|
|
|
|
|
|
# we have to do this ourselves for some reason...
|
|
|
|
(cd misc && ${protobuf}/bin/protoc --cpp_out ../backends/protobuf/ ./yosys.proto)
|
2015-12-29 16:31:18 +00: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 07:34:04 +00:00
|
|
|
homepage = http://www.clifford.at/yosys/;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ shell thoughtpolice ];
|
2018-04-11 20:08:51 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2015-12-29 16:31:18 +00:00
|
|
|
};
|
|
|
|
}
|