yosys: 0.20 -> 0.22

https://github.com/YosysHQ/yosys/releases/tag/yosys-0.22
This commit is contained in:
Luflosi 2022-10-05 13:58:46 +02:00 committed by Austin Seipp
parent 2cb6af3eac
commit 9693a9a2e8

View File

@ -72,18 +72,27 @@ let
in stdenv.mkDerivation rec {
pname = "yosys";
version = "0.20";
version = "0.22";
src = fetchFromGitHub {
owner = "YosysHQ";
repo = "yosys";
rev = "${pname}-${version}";
hash = "sha256-0oDF6wLcWlDG2hWFjIL+oQmICQl/H6YAwDzgTiuF298=";
hash = "sha256-us4GiulqkzcwD2iuNXB5eTd3iqgUdvj9Nd2p/9TJerQ=";
};
enableParallelBuilding = true;
nativeBuildInputs = [ pkg-config bison flex ];
buildInputs = [ tcl readline libffi python3 protobuf zlib ];
buildInputs = [
tcl
readline
libffi
protobuf
zlib
(python3.withPackages (pp: with pp; [
click
]))
];
makeFlags = [ "ENABLE_PROTOBUF=1" "PREFIX=${placeholder "out"}"];