yosys: 0.46 -> 0.47

https://github.com/YosysHQ/yosys/releases/tag/0.47

Also mark Synlig as broken as it is currently not compatible with the latest Yosys version.
This commit is contained in:
Luflosi 2024-11-06 11:03:03 +01:00
parent e4e4126b67
commit d56656e487
No known key found for this signature in database
GPG Key ID: 743C5DD6900A1FF0
2 changed files with 3 additions and 2 deletions

View File

@ -75,13 +75,13 @@ let
in stdenv.mkDerivation (finalAttrs: {
pname = "yosys";
version = "0.46";
version = "0.47";
src = fetchFromGitHub {
owner = "YosysHQ";
repo = "yosys";
rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-OnSKsX5G8Tc6AMFCmuWg6AekJvvG+K5Zr5rZZll+c/o=";
hash = "sha256-9u9aAPTZyt9vzZwryor3GRCGzs/mu2/XtM0XzV7uHfk=";
fetchSubmodules = true;
leaveDotGit = true;
postFetch = ''

View File

@ -87,5 +87,6 @@ stdenv.mkDerivation (finalAttrs: {
license = licenses.asl20;
maintainers = with maintainers; [ hzeller ];
platforms = platforms.all;
broken = versionAtLeast yosys.version "0.47";
};
})