aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/browsers/palemoon
diff options
context:
space:
mode:
authorOPNA2608 <christoph.neidahl@gmail.com>2019-07-20 20:57:07 +0200
committerOPNA2608 <christoph.neidahl@gmail.com>2019-07-20 21:51:36 +0200
commit9a38937331c97f974a2490990e1aed3cb8b0464c (patch)
tree70866f3f8684a6a90641e0b515080131d8f07bcb /pkgs/applications/networking/browsers/palemoon
parent464b16c4b187bc875aedfd1441f829e0b03fcd46 (diff)
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.
Diffstat (limited to 'pkgs/applications/networking/browsers/palemoon')
-rw-r--r--pkgs/applications/networking/browsers/palemoon/default.nix2
1 files changed, 1 insertions, 1 deletions
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" ];
};
}