summary refs log tree commit diff
path: root/pkgs/tools/wayland/gnome-randr
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/gnome-randr
parent300df9525f042e5a60366199bbd245de213b1613 (diff)
downloadnixpkgs-d3c7ef80efd7d059a9e1c96ffd5d059c459243ac.tar
nixpkgs-d3c7ef80efd7d059a9e1c96ffd5d059c459243ac.tar.gz
nixpkgs-d3c7ef80efd7d059a9e1c96ffd5d059c459243ac.tar.bz2
nixpkgs-d3c7ef80efd7d059a9e1c96ffd5d059c459243ac.tar.lz
nixpkgs-d3c7ef80efd7d059a9e1c96ffd5d059c459243ac.tar.xz
nixpkgs-d3c7ef80efd7d059a9e1c96ffd5d059c459243ac.tar.zst
nixpkgs-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/gnome-randr')
-rw-r--r--pkgs/tools/wayland/gnome-randr/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/wayland/gnome-randr/default.nix b/pkgs/tools/wayland/gnome-randr/default.nix
index 9c88130f27b..130b29f8412 100644
--- a/pkgs/tools/wayland/gnome-randr/default.nix
+++ b/pkgs/tools/wayland/gnome-randr/default.nix
@@ -24,10 +24,11 @@ rustPlatform.buildRustPackage {
 
   nativeBuildInputs = [ pkg-config ];
 
-  meta = {
+  meta = with lib; {
     description = "An xrandr-like CLI for configuring displays on GNOME/Wayland, on distros that don't support `wlr-randr`";
     homepage = "https://github.com/maxwellainatchi/gnome-randr-rust";
-    license = lib.licenses.mit;
-    maintainers = [ lib.maintainers.roberth ];
+    license = licenses.mit;
+    maintainers = [ maintainers.roberth ];
+    platforms = platforms.linux;
   };
 }