2019-03-25 10:12:18 +08:00
|
|
|
{ stdenv, fetchFromGitHub
|
|
|
|
, pkgconfig, bison, flex
|
|
|
|
, tcl, readline, libffi, python3
|
|
|
|
, protobuf
|
|
|
|
}:
|
|
|
|
|
|
|
|
with builtins;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "yosys-${version}";
|
2019-04-27 14:59:16 +08:00
|
|
|
version = "2019.04.27hx";
|
2019-03-25 10:12:18 +08:00
|
|
|
|
|
|
|
srcs = [
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "yosyshq";
|
|
|
|
repo = "yosys";
|
2019-04-27 14:45:05 +08:00
|
|
|
rev = "ea0e0722bb42254ac8c63eb41664d9dfb7973aec";
|
|
|
|
sha256 = "1sq9a1h651is9wq8sq4kb4n8v4d91fmdc7g01nrxj1vk1nji8308";
|
2019-03-25 10:12:18 +08:00
|
|
|
name = "yosys";
|
|
|
|
})
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "berkeley-abc";
|
|
|
|
repo = "abc";
|
2019-04-27 14:45:05 +08:00
|
|
|
rev = "3709744c60696c5e3f4cc123939921ce8107fe04";
|
|
|
|
sha256 = "18a9cjng3qfalq8m9az5ck1y5h4l2pf9ycrvkzs9hn82b1j7vrax";
|
2019-03-25 10:12:18 +08:00
|
|
|
name = "yosys-abc";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
sourceRoot = "yosys";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ tcl readline libffi python3 bison flex protobuf ];
|
|
|
|
|
|
|
|
makeFlags = [ "ENABLE_PROTOBUF=1" ];
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
patch -p1 < ${./yosys_726.patch}
|
|
|
|
substituteInPlace ../yosys-abc/Makefile \
|
|
|
|
--replace 'CC := gcc' ""
|
|
|
|
substituteInPlace ./Makefile \
|
|
|
|
--replace 'CXX = clang' "" \
|
|
|
|
--replace 'ABCMKARGS = CC="$(CXX)"' 'ABCMKARGS =' \
|
|
|
|
--replace 'echo UNKNOWN' 'echo ${substring 0 10 (elemAt srcs 0).rev}'
|
|
|
|
'';
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
chmod -R u+w ../yosys-abc
|
|
|
|
ln -s ../yosys-abc abc
|
|
|
|
make config-${if stdenv.cc.isClang or false then "clang" else "gcc"}
|
|
|
|
echo 'ABCREV := default' >> Makefile.conf
|
|
|
|
makeFlags="PREFIX=$out $makeFlags"
|
|
|
|
|
|
|
|
# we have to do this ourselves for some reason...
|
|
|
|
(cd misc && ${protobuf}/bin/protoc --cpp_out ../backends/protobuf/ ./yosys.proto)
|
|
|
|
'';
|
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
homepage = http://www.clifford.at/yosys/;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ shell thoughtpolice ];
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|