audacity: change meta.platforms to platforms.linux

This seems to build fine now on at least aarch64 (tested on PineBook
Pro), let's try having it on all Linux platforms.
This commit is contained in:
Anton Kindestam 2021-03-06 07:43:13 +01:00
parent 6aa26c8623
commit ef15936953

View file

@ -132,6 +132,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.audacityteam.org/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ lheckemann ];
platforms = intersectLists platforms.linux platforms.x86; # fails on ARM
platforms = platforms.linux;
};
}