about summary refs log tree commit diff
path: root/pkgs/applications
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
parent464b16c4b187bc875aedfd1441f829e0b03fcd46 (diff)
downloadnixlib-9a38937331c97f974a2490990e1aed3cb8b0464c.tar
nixlib-9a38937331c97f974a2490990e1aed3cb8b0464c.tar.gz
nixlib-9a38937331c97f974a2490990e1aed3cb8b0464c.tar.bz2
nixlib-9a38937331c97f974a2490990e1aed3cb8b0464c.tar.lz
nixlib-9a38937331c97f974a2490990e1aed3cb8b0464c.tar.xz
nixlib-9a38937331c97f974a2490990e1aed3cb8b0464c.tar.zst
nixlib-9a38937331c97f974a2490990e1aed3cb8b0464c.zip
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')
-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" ];
   };
 }