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 21:28:53 +0100
committerGitHub <noreply@github.com>2024-01-05 21:28:53 +0100
commit065ab58f0ff5746b126f5a4509f6cea6d4dcb5cb (patch)
tree1ffbd66d9fe6a99f93c492614e236cdc4d913a01 /pkgs
parente3d0c844283d488c97c210d28aea230817c2c04a (diff)
parentca6b7b1b6dd0af0d47b6c53f9ab1fbe5fc4e4a08 (diff)
Merge pull request #278868 from r-ryantm/auto-update/libuev
libuev: 2.4.0 -> 2.4.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/libuev/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libuev/default.nix b/pkgs/development/libraries/libuev/default.nix
index 1ec1590428d34..a124c25a20404 100644
--- a/pkgs/development/libraries/libuev/default.nix
+++ b/pkgs/development/libraries/libuev/default.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   pname = "libuev";
-  version = "2.4.0";
+  version = "2.4.1";
 
   src = fetchFromGitHub {
     owner = "troglobit";
     repo = "libuev";
     rev = "v${version}";
-    hash = "sha256-x6l7CqlZ82kc8shAf2SxgIa4ESu0fTtnOgGz5joVCEY=";
+    hash = "sha256-x1Sk7IuhlBQPFL7Rq4tmEanBxI/WaQ2L5fpUyEWOoi8=";
   };
 
   nativeBuildInputs = [ pkg-config autoreconfHook ];
@@ -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 ];
   };
 }