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;
};
})