2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-14 09:43:14 +00:00

rocmlir: don't enable broken as long as minor version is the same

This commit is contained in:
Madoura 2022-12-16 09:32:53 -06:00
parent 9e0472e206
commit 187452f58e
No known key found for this signature in database
GPG Key ID: 3201136B3DB072F9

View File

@ -100,6 +100,7 @@ in stdenv.mkDerivation (finalAttrs: {
homepage = "https://github.com/ROCmSoftwarePlatform/rocMLIR";
license = with licenses; [ asl20 ];
maintainers = teams.rocm.members;
broken = finalAttrs.version != stdenv.cc.version;
# Once again, they haven't updated the tags...
broken = lib.versions.minor finalAttrs.version != lib.versions.minor stdenv.cc.version;
};
})