From 06b7e1e922e24338aaa0c3740ee92e542c5a0f2d Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Thu, 2 May 2019 16:03:34 +0200 Subject: [PATCH] pulseeffects: Disable for aarch64-linux Never succeeded, platform is not supported by pulseeffects --- pkgs/applications/audio/pulseeffects/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/audio/pulseeffects/default.nix b/pkgs/applications/audio/pulseeffects/default.nix index d95e05824ea1..71b9d3442463 100644 --- a/pkgs/applications/audio/pulseeffects/default.nix +++ b/pkgs/applications/audio/pulseeffects/default.nix @@ -107,5 +107,6 @@ in stdenv.mkDerivation rec { license = licenses.gpl3; maintainers = with maintainers; [ jtojnar ]; platforms = platforms.linux; + badPlatforms = [ "aarch64-linux" ]; }; }