rr: enable on aarch64-linux and disable on non-linux

According to https://github.com/rr-debugger/rr#system-requirements, rr only
works on Linux and works on aarch64 as of 5.6
This commit is contained in:
Charlie Groves 2022-09-18 11:25:42 -04:00
parent da6a05816e
commit b92bdaf21c

View File

@ -60,6 +60,6 @@ stdenv.mkDerivation rec {
license = with lib.licenses; [ mit bsd2 ];
maintainers = with lib.maintainers; [ pierron thoughtpolice ];
platforms = lib.platforms.x86;
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
};
}