nixpkgs/pkgs/development/libraries/libsearpc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
811 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, pkg-config
, python3
, glib
, jansson
}:
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";
pname = "libsearpc";
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=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
python3
];
propagatedBuildInputs = [
glib
jansson
];
meta = with lib; {
homepage = "https://github.com/haiwen/libsearpc";
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;
maintainers = with maintainers; [ greizgh ];
};
}