summary refs log tree commit diff
path: root/pkgs/tools/misc/pipelight
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 /pkgs/tools/misc/pipelight
parentb04040cce497c6a1149eac25793d2bb09e48be3d (diff)
downloadnixpkgs-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.tar
nixpkgs-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.tar.gz
nixpkgs-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.tar.bz2
nixpkgs-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.tar.lz
nixpkgs-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.tar.xz
nixpkgs-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.tar.zst
nixpkgs-53bf3cc78c6d8c98c25ad8a2e269f8e79ba175cc.zip
pipelight: Only works on x86
https://hydra.nixos.org/build/65195994
Diffstat (limited to 'pkgs/tools/misc/pipelight')
-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 c68d41532c2..3493e7ffa7b 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" ];
   };
 }