about summary refs log tree commit diff
path: root/pkgs/tools/misc/hid-listen
diff options
context:
space:
mode:
authorBenno Fünfstück <benno.fuenfstueck@gmail.com>2017-07-18 15:14:56 +0200
committerBenno Fünfstück <benno.fuenfstueck@gmail.com>2017-07-18 15:14:56 +0200
commitdbe79a7d207b29c35a382a73ffa125fe2ca42d18 (patch)
tree7c8986a9599d9c183d57c42f8c362df541efabe9 /pkgs/tools/misc/hid-listen
parent75454c3122e230c4ad21582e6a48468e0fe9c62c (diff)
hid-listen: change platforms to linux only
package fails to build on darwin, it doesn't seem clang compatible
and hardcodes certain framework paths
Diffstat (limited to 'pkgs/tools/misc/hid-listen')
-rw-r--r--pkgs/tools/misc/hid-listen/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/misc/hid-listen/default.nix b/pkgs/tools/misc/hid-listen/default.nix
index 916a6afa66b17..0ebad4f7117da 100644
--- a/pkgs/tools/misc/hid-listen/default.nix
+++ b/pkgs/tools/misc/hid-listen/default.nix
@@ -19,6 +19,6 @@ stdenv.mkDerivation rec {
     homepage = https://www.pjrc.com/teensy/hid_listen.html;
     license = licenses.gpl3;
     maintainers = with maintainers; [ tomsmeets ];
-    platforms = platforms.all;
+    platforms = platforms.linux;
   };
 }