Unverified Commit f4f34dc8 authored by Florian Brandes's avatar Florian Brandes
Browse files

libsearpc: 3.3-20230626 -> 3.3-20241031



fix build with GCC14

Signed-off-by: default avatarFlorian Brandes <florian.brandes@posteo.de>
parent 04e40bca
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -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 ];
  };
}