From 9a38937331c97f974a2490990e1aed3cb8b0464c Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sat, 20 Jul 2019 20:57:07 +0200 Subject: [PATCH] palemoon: restrict platforms to x86 Linux Pale Moon (with official branding at least) doesn't appear to be available for non-x86 architectures (yet), so we'll restrict the platforms to i686 and x64 Linux. --- pkgs/applications/networking/browsers/palemoon/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/palemoon/default.nix b/pkgs/applications/networking/browsers/palemoon/default.nix index f85ca6e430bd..c4182785e829 100644 --- a/pkgs/applications/networking/browsers/palemoon/default.nix +++ b/pkgs/applications/networking/browsers/palemoon/default.nix @@ -130,6 +130,6 @@ in stdenv.mkDerivation rec { homepage = "https://www.palemoon.org/"; license = licenses.mpl20; maintainers = with maintainers; [ rnhmjoj AndersonTorres OPNA2608 ]; - platforms = platforms.linux; + platforms = [ "i686-linux" "x86_64-linux" ]; }; }