2020-01-07 15:06:23 +00:00
|
|
|
{ stdenv
|
2020-02-01 11:11:30 +00:00
|
|
|
, abc-verifier
|
2020-01-07 15:06:23 +00:00
|
|
|
, bison
|
|
|
|
, fetchFromGitHub
|
|
|
|
, flex
|
|
|
|
, libffi
|
|
|
|
, pkgconfig
|
|
|
|
, protobuf
|
|
|
|
, python3
|
|
|
|
, readline
|
|
|
|
, tcl
|
2019-09-27 15:06:42 +01:00
|
|
|
, verilog
|
2020-01-07 15:06:23 +00:00
|
|
|
, zlib
|
2017-10-16 08:34:04 +01:00
|
|
|
}:
|
2015-12-29 16:31:18 +00:00
|
|
|
|
2020-02-01 11:11:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-03-17 10:26:27 +00:00
|
|
|
pname = "yosys";
|
2020-03-25 11:46:01 +00:00
|
|
|
version = "2020.03.24";
|
2015-12-29 16:31:18 +00:00
|
|
|
|
2020-01-07 15:09:08 +00:00
|
|
|
src = fetchFromGitHub {
|
2020-02-08 15:29:50 +00:00
|
|
|
owner = "YosysHQ";
|
2020-01-07 15:09:08 +00:00
|
|
|
repo = "yosys";
|
2020-03-25 11:46:01 +00:00
|
|
|
rev = "c9555c9adeba886a308c60615ac794ec20d9276e";
|
|
|
|
sha256 = "1fh118fv06jyfmkx6zy0w2k0rjj22m0ffyll3k5giaw8zzaf0j3a";
|
2020-01-07 15:09:08 +00:00
|
|
|
};
|
2015-12-29 16:31:18 +00:00
|
|
|
|
2017-10-16 08:34:04 +01:00
|
|
|
enableParallelBuilding = true;
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-08-14 00:46:42 +01:00
|
|
|
buildInputs = [ tcl readline libffi python3 bison flex protobuf zlib ];
|
2018-08-09 01:28:18 +01:00
|
|
|
|
2020-01-07 15:06:23 +00:00
|
|
|
makeFlags = [ "ENABLE_PROTOBUF=1" "PREFIX=${placeholder "out"}"];
|
2018-02-14 06:15:48 +00:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace ./Makefile \
|
2018-04-11 21:08:51 +01:00
|
|
|
--replace 'CXX = clang' "" \
|
2019-08-20 10:43:58 +01:00
|
|
|
--replace 'LD = clang++' 'LD = $(CXX)' \
|
|
|
|
--replace 'CXX = gcc' "" \
|
|
|
|
--replace 'LD = gcc' 'LD = $(CXX)' \
|
|
|
|
--replace 'ABCMKARGS = CC="$(CXX)" CXX="$(CXX)"' 'ABCMKARGS =' \
|
2020-02-01 11:11:30 +00:00
|
|
|
--replace 'echo UNKNOWN' 'echo ${builtins.substring 0 10 src.rev}'
|
2019-09-27 15:06:42 +01:00
|
|
|
patchShebangs tests
|
2018-02-14 06:15:48 +00:00
|
|
|
'';
|
|
|
|
|
2020-02-01 11:34:30 +00:00
|
|
|
preBuild = let
|
|
|
|
shortAbcRev = builtins.substring 0 7 abc-verifier.rev;
|
|
|
|
in ''
|
2020-01-07 15:09:08 +00:00
|
|
|
chmod -R u+w .
|
2018-04-11 21:08:51 +01:00
|
|
|
make config-${if stdenv.cc.isClang or false then "clang" else "gcc"}
|
2020-02-01 11:11:30 +00:00
|
|
|
echo 'ABCEXTERNAL = ${abc-verifier}/bin/abc' >> Makefile.conf
|
2018-08-09 01:28:18 +01:00
|
|
|
|
|
|
|
# we have to do this ourselves for some reason...
|
|
|
|
(cd misc && ${protobuf}/bin/protoc --cpp_out ../backends/protobuf/ ./yosys.proto)
|
2020-02-01 11:34:30 +00:00
|
|
|
|
2020-03-17 10:26:27 +00:00
|
|
|
if ! grep -q "ABCREV = ${shortAbcRev}" Makefile; then
|
2020-02-01 11:34:30 +00:00
|
|
|
echo "yosys isn't compatible with the provided abc (${shortAbcRev}), failing."
|
|
|
|
exit 1
|
|
|
|
fi
|
2015-12-29 16:31:18 +00:00
|
|
|
'';
|
|
|
|
|
2019-09-27 15:06:42 +01:00
|
|
|
doCheck = true;
|
|
|
|
checkInputs = [ verilog ];
|
|
|
|
|
2020-03-17 10:26:27 +00:00
|
|
|
# Internally, yosys knows to use the specified hardcoded ABCEXTERNAL binary.
|
|
|
|
# But other tools (like mcy or symbiyosys) can't know how yosys was built, so
|
|
|
|
# they just assume that 'yosys-abc' is available -- but it's not installed
|
|
|
|
# when using ABCEXTERNAL
|
|
|
|
#
|
|
|
|
# add a symlink to fake things so that both variants work the same way.
|
|
|
|
postInstall = ''
|
|
|
|
ln -sfv ${abc-verifier}/bin/abc $out/bin/yosys-abc
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Open RTL synthesis framework and tools";
|
|
|
|
homepage = "http://www.clifford.at/yosys/";
|
|
|
|
license = licenses.isc;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ shell thoughtpolice emily ];
|
2015-12-29 16:31:18 +00:00
|
|
|
};
|
|
|
|
}
|