From b9aa3f3439f4ecc6b781b6f850bc92cb6c225461 Mon Sep 17 00:00:00 2001 From: Florian Brandes Date: Wed, 25 Dec 2024 21:35:32 +0100 Subject: [PATCH] libsearpc: 3.3-20230626 -> 3.3-20241031 fix build with GCC14 Signed-off-by: Florian Brandes (cherry picked from commit f4f34dc80d90d7f71135a985430dcf10719c6163) --- pkgs/by-name/li/libsearpc/package.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/li/libsearpc/package.nix b/pkgs/by-name/li/libsearpc/package.nix index a16fdb584de45..219c5221ca020 100644 --- a/pkgs/by-name/li/libsearpc/package.nix +++ b/pkgs/by-name/li/libsearpc/package.nix @@ -10,15 +10,15 @@ }: stdenv.mkDerivation rec { - version = "3.3-20230626"; - commit = "783141fb694f3bd1f8bd8a783670dd25a53b9fc1"; + version = "3.3-20241031"; + commit = "d00c062d76d86b76c8c179bfb4babc9e2200b3f1"; pname = "libsearpc"; src = fetchFromGitHub { owner = "haiwen"; repo = "libsearpc"; rev = commit; - sha256 = "sha256-nYYp3EyA8nufhbWaw4Lv/c4utGYaxC+PoFyamUEVJx4="; + sha256 = "sha256-Ze1dOEFUIA16OlqkyDjQw6c6JcDECjYsdCm5um0kG/c="; }; nativeBuildInputs = [ @@ -32,12 +32,12 @@ stdenv.mkDerivation rec { jansson ]; - meta = with lib; { + meta = { homepage = "https://github.com/haiwen/libsearpc"; description = "Simple and easy-to-use C language RPC framework based on GObject System"; mainProgram = "searpc-codegen.py"; - license = licenses.lgpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ greizgh ]; + license = lib.licenses.lgpl3; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ greizgh ]; }; }