about summary refs log tree commit diff
path: root/pkgs/tools/wayland/wshowkeys
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2023-03-05 14:59:54 +0200
committerArtturin <Artturin@artturin.com>2023-03-05 15:11:44 +0200
commitd3c7ef80efd7d059a9e1c96ffd5d059c459243ac (patch)
tree0b4bf4e20adfe48c9ee8582d0308d31358759726 /pkgs/tools/wayland/wshowkeys
parent300df9525f042e5a60366199bbd245de213b1613 (diff)
downloadnixlib-d3c7ef80efd7d059a9e1c96ffd5d059c459243ac.tar
nixlib-d3c7ef80efd7d059a9e1c96ffd5d059c459243ac.tar.gz
nixlib-d3c7ef80efd7d059a9e1c96ffd5d059c459243ac.tar.bz2
nixlib-d3c7ef80efd7d059a9e1c96ffd5d059c459243ac.tar.lz
nixlib-d3c7ef80efd7d059a9e1c96ffd5d059c459243ac.tar.xz
nixlib-d3c7ef80efd7d059a9e1c96ffd5d059c459243ac.tar.zst
nixlib-d3c7ef80efd7d059a9e1c96ffd5d059c459243ac.zip
pkgs/tools/wayland: mark all linux only
on non-linux they all fail various variations of
meson.build:26:0: ERROR: Dependency "wayland-client" not found, tried pkgconfig and framework
fatal error: 'wayland-util.h' file not found
Diffstat (limited to 'pkgs/tools/wayland/wshowkeys')
-rw-r--r--pkgs/tools/wayland/wshowkeys/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/wayland/wshowkeys/default.nix b/pkgs/tools/wayland/wshowkeys/default.nix
index 3ce14b543879..268dbd8ddbc9 100644
--- a/pkgs/tools/wayland/wshowkeys/default.nix
+++ b/pkgs/tools/wayland/wshowkeys/default.nix
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
     license = with licenses; [ gpl3Only mit ];
     # Some portions of the code are taken from Sway which is MIT licensed.
     # TODO: gpl3Only or gpl3Plus (ask upstream)?
-    platforms = platforms.unix;
+    platforms = platforms.linux;
     maintainers = with maintainers; [ primeos berbiche ];
   };
 }