libhv: 1.3.3 -> 1.3.4 (#455550)

This commit is contained in:
Nikolay Korotkiy
2025-10-25 14:40:17 +00:00
committed by GitHub
+13 -13
View File
@@ -9,13 +9,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "libhv";
version = "1.3.3";
version = "1.3.4";
src = fetchFromGitHub {
owner = "ithewei";
repo = "libhv";
rev = "v${finalAttrs.version}";
hash = "sha256-N2YD84eORA5nDpeeqy9jCvRx86PkRaKLzI6LF1AnHtU=";
tag = "v${finalAttrs.version}";
hash = "sha256-YIWXdAZsWeSdtPtBaf/t9t68dFKw2nY0bvgMrzCEE5U=";
};
nativeBuildInputs = [ cmake ];
@@ -26,19 +26,19 @@ stdenv.mkDerivation (finalAttrs: {
];
cmakeFlags = [
"-DENABLE_UDS=ON"
"-DWITH_MQTT=ON"
"-DWITH_CURL=ON"
"-DWITH_NGHTTP2=ON"
"-DWITH_OPENSSL=ON"
"-DWITH_KCP=ON"
(lib.cmakeBool "ENABLE_UDS" true)
(lib.cmakeBool "WITH_MQTT" true)
(lib.cmakeBool "WITH_CURL" true)
(lib.cmakeBool "WITH_NGHTTP2" true)
(lib.cmakeBool "WITH_OPENSSL" true)
(lib.cmakeBool "WITH_KCP" true)
];
meta = with lib; {
meta = {
description = "C/c++ network library for developing TCP/UDP/SSL/HTTP/WebSocket/MQTT client/server";
homepage = "https://github.com/ithewei/libhv";
license = licenses.bsd3;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ sikmir ];
platforms = lib.platforms.unix;
};
})