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:
parent
da6a05816e
commit
b92bdaf21c
@ -60,6 +60,6 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
license = with lib.licenses; [ mit bsd2 ];
|
license = with lib.licenses; [ mit bsd2 ];
|
||||||
maintainers = with lib.maintainers; [ pierron thoughtpolice ];
|
maintainers = with lib.maintainers; [ pierron thoughtpolice ];
|
||||||
platforms = lib.platforms.x86;
|
platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user