2021-12-30 17:33:20 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
, pkg-config
|
|
|
|
, python3
|
|
|
|
, glib
|
|
|
|
, jansson
|
|
|
|
}:
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2018-06-26 21:51:11 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2023-06-26 10:07:38 +00:00
|
|
|
version = "3.3-20230626";
|
|
|
|
commit = "783141fb694f3bd1f8bd8a783670dd25a53b9fc1";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libsearpc";
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2018-06-26 21:51:11 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "haiwen";
|
|
|
|
repo = "libsearpc";
|
2023-06-26 10:07:38 +00:00
|
|
|
rev = commit;
|
|
|
|
sha256 = "sha256-nYYp3EyA8nufhbWaw4Lv/c4utGYaxC+PoFyamUEVJx4=";
|
2014-02-04 19:02:46 +00:00
|
|
|
};
|
|
|
|
|
2021-12-30 17:33:20 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
pkg-config
|
|
|
|
python3
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
glib
|
|
|
|
jansson
|
|
|
|
];
|
2014-02-04 19:02:46 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/haiwen/libsearpc";
|
2021-04-13 23:18:51 +00:00
|
|
|
description = "A simple and easy-to-use C language RPC framework based on GObject System";
|
2018-08-23 15:34:01 +00:00
|
|
|
license = licenses.lgpl3;
|
|
|
|
platforms = platforms.linux;
|
2021-04-13 23:18:51 +00:00
|
|
|
maintainers = with maintainers; [ greizgh ];
|
2014-02-04 19:02:46 +00:00
|
|
|
};
|
2014-05-24 01:32:02 +00:00
|
|
|
}
|