about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-01-05 19:32:05 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-01-05 19:32:05 +0100
commitca6b7b1b6dd0af0d47b6c53f9ab1fbe5fc4e4a08 (patch)
treecb95ad5b9179aac75274665e0c62ed430ae39a42 /pkgs
parent646b43f8c52feb8833add707c057710cd7d36f6e (diff)
libuev: restrict platforms
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/libuev/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libuev/default.nix b/pkgs/development/libraries/libuev/default.nix
index f4068850cb9a1..a124c25a20404 100644
--- a/pkgs/development/libraries/libuev/default.nix
+++ b/pkgs/development/libraries/libuev/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
     description = "Lightweight event loop library for Linux epoll() family APIs";
     homepage = "https://codedocs.xyz/troglobit/libuev/";
     license = licenses.mit;
-    platforms = platforms.unix;
+    platforms = platforms.linux;
     maintainers = with maintainers; [ vifino ];
   };
 }