From ef15936953684c1d7712ccfc09bc5e1c69cdd0a6 Mon Sep 17 00:00:00 2001 From: Anton Kindestam Date: Sat, 6 Mar 2021 07:43:13 +0100 Subject: [PATCH] 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. --- pkgs/applications/audio/audacity/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/audacity/default.nix b/pkgs/applications/audio/audacity/default.nix index c3daee55fc4b..36320a01061f 100644 --- a/pkgs/applications/audio/audacity/default.nix +++ b/pkgs/applications/audio/audacity/default.nix @@ -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; }; }