about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-12-05 23:26:26 +0200
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2017-12-05 23:27:30 +0200
commit53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc (patch)
tree21567c079c6ba15a4085f98ddaeb1b50e0ee1953
parentb04040cce497c6a1149eac25793d2bb09e48be3d (diff)
downloadnixlib-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.tar
nixlib-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.tar.gz
nixlib-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.tar.bz2
nixlib-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.tar.lz
nixlib-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.tar.xz
nixlib-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.tar.zst
nixlib-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.zip
pipelight: Only works on x86
https://hydra.nixos.org/build/65195994
-rw-r--r--pkgs/tools/misc/pipelight/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/misc/pipelight/default.nix b/pkgs/tools/misc/pipelight/default.nix
index c68d41532c22..3493e7ffa7ba 100644
--- a/pkgs/tools/misc/pipelight/default.nix
+++ b/pkgs/tools/misc/pipelight/default.nix
@@ -57,6 +57,6 @@ in stdenv.mkDerivation rec {
     license = with stdenv.lib.licenses; [ mpl11 gpl2 lgpl21 ];
     description = "A wrapper for using Windows plugins in Linux browsers";
     maintainers = with stdenv.lib.maintainers; [ skeidel ];
-    platforms = with stdenv.lib.platforms; linux;
+    platforms = [ "x86_64-linux" "i686-linux" ];
   };
 }