2021-03-31 22:11:34 +01:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2020-02-01 11:11:30 +00:00
|
|
|
, abc-verifier
|
2020-06-12 04:43:44 +01:00
|
|
|
, bash
|
2020-01-07 15:06:23 +00:00
|
|
|
, bison
|
|
|
|
, fetchFromGitHub
|
|
|
|
, flex
|
|
|
|
, libffi
|
2021-01-15 16:26:16 +00:00
|
|
|
, pkg-config
|
2020-01-07 15:06:23 +00:00
|
|
|
, 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-11-12 20:14:08 +00:00
|
|
|
# NOTE: as of late 2020, yosys has switched to an automation robot that
|
|
|
|
# automatically tags their repository Makefile with a new build number every
|
|
|
|
# day when changes are committed. please MAKE SURE that the version number in
|
|
|
|
# the 'version' field exactly matches the YOSYS_VER field in the Yosys
|
|
|
|
# makefile!
|
|
|
|
#
|
|
|
|
# if a change in yosys isn't yet available under a build number like this (i.e.
|
|
|
|
# it was very recently merged, within an hour), wait a few hours for the
|
|
|
|
# automation robot to tag the new version, like so:
|
|
|
|
#
|
|
|
|
# https://github.com/YosysHQ/yosys/commit/71ca9a825309635511b64b3ec40e5e5e9b6ad49b
|
|
|
|
#
|
|
|
|
# note that while most nix packages for "unstable versions" use a date-based
|
|
|
|
# version scheme, synchronizing the nix package version here with the unstable
|
|
|
|
# yosys version number helps users report better bugs upstream, and is
|
|
|
|
# ultimately less confusing than using dates.
|
|
|
|
|
2020-02-01 11:11:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-03-17 10:26:27 +00:00
|
|
|
pname = "yosys";
|
2021-12-17 06:43:46 +00:00
|
|
|
version = "0.12+36";
|
2015-12-29 16:31:18 +00:00
|
|
|
|
2020-01-07 15:09:08 +00:00
|
|
|
src = fetchFromGitHub {
|
2021-12-02 20:04:44 +00:00
|
|
|
owner = "YosysHQ";
|
|
|
|
repo = "yosys";
|
2021-12-17 06:43:46 +00:00
|
|
|
rev = "60c3ea367c942459a95e610ed98f277ce46c0142";
|
|
|
|
hash = "sha256-NcfhNUmb3IDG08XgS+NGbRLI8sn4aQkOA7RF7wucDug=";
|
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;
|
2021-01-15 22:07:53 +00:00
|
|
|
nativeBuildInputs = [ pkg-config bison flex ];
|
|
|
|
buildInputs = [ tcl readline libffi python3 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
|
|
|
|
2021-01-15 22:07:53 +00:00
|
|
|
patches = [
|
|
|
|
./plugin-search-dirs.patch
|
2021-11-09 13:10:19 +00:00
|
|
|
./fix-clang-build.patch # see https://github.com/YosysHQ/yosys/issues/2011
|
2021-01-15 22:07:53 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
2018-02-14 06:15:48 +00:00
|
|
|
substituteInPlace ./Makefile \
|
2020-02-01 11:11:30 +00:00
|
|
|
--replace 'echo UNKNOWN' 'echo ${builtins.substring 0 10 src.rev}'
|
2021-01-15 16:26:16 +00:00
|
|
|
|
|
|
|
chmod +x ./misc/yosys-config.in
|
|
|
|
patchShebangs tests ./misc/yosys-config.in
|
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-11-12 20:14:08 +00:00
|
|
|
echo "ERROR: yosys isn't compatible with the provided abc (${shortAbcRev}), failing."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2021-01-15 16:26:16 +00:00
|
|
|
if ! grep -q "YOSYS_VER := $version" Makefile; then
|
2021-01-15 16:13:27 +00:00
|
|
|
echo "ERROR: yosys version in Makefile isn't equivalent to version of the nix package (${version}), failing."
|
2020-02-01 11:34:30 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2015-12-29 16:31:18 +00:00
|
|
|
'';
|
|
|
|
|
2020-11-12 20:14:08 +00:00
|
|
|
checkTarget = "test";
|
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
|
|
|
|
#
|
2020-11-12 20:14:08 +00:00
|
|
|
# add a symlink to fake things so that both variants work the same way. this
|
|
|
|
# is also needed at build time for the test suite.
|
|
|
|
postBuild = "ln -sfv ${abc-verifier}/bin/abc ./yosys-abc";
|
2021-01-15 16:13:27 +00:00
|
|
|
postInstall = "ln -sfv ${abc-verifier}/bin/abc $out/bin/yosys-abc";
|
2020-03-17 10:26:27 +00:00
|
|
|
|
yosys: enable loading "out of band" plugins
By default, when yosys looks for plugins with the `-m` flag or `plugin`
command, it always looks in `YOSYS_PREFIX/share/yosys/plugins` for a
`.so` file, and loads that.
By design, this is intended to be a single, global, mutable location
such as `/usr/share/yosys/...` on disk, and plugins are supposed to
install their `.so` files here after yosys is installed, and they all
coexist together. Obviously, this won't work for us, but users might
expect these plugins to still work. More importantly, they won't want to
add special cases to their build systems.
Instead, to allow Nix users to use yosys plugins with the same UX (e.g.
natively call `plugin bluespec` or `-m ghdl`), we add a patch to yosys
that allows it to search a new `NIX_YOSYS_PLUGIN_DIRS` search path
environment variable. In tandem, we add a setup hook that adds to this
search path if a package has a `$out/share/yosys/plugins` directory.
Thus, it's enough to just include `yosys`, and any package that has a
yosys plugin in `$out/share/yosys/plugins`, and you can load it with
`-m` or the `plugin` command.
We could use a style like the haskellPackages set, where the set of
packages are "encased" in a lambda, and we pass packages that are
compatible with that version of the compiler:
haskell.packages.ghc8102.ghcWithPackages (p: with p; [ ... ])
but, realistically, there will probably only ever be one version of
yosys and one set of compatible plugins, so this seems overdone.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2021-01-15 05:52:23 +00:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2021-01-15 22:07:53 +00:00
|
|
|
meta = with lib; {
|
2020-03-17 10:26:27 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|