2019-10-09 00:54:28 +02:00
|
|
|
{stdenv, fetchFromGitHub, automake, autoconf, pkgconfig, libtool, python2Packages, glib, jansson}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-10-17 21:47:52 +02:00
|
|
|
version = "3.1.0";
|
2019-10-09 00:54:28 +02:00
|
|
|
name = "libsearpc-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "haiwen";
|
|
|
|
repo = "libsearpc";
|
2019-10-18 01:19:43 +02:00
|
|
|
#rev = "v${version}";
|
|
|
|
rev = "v3.1-latest";
|
|
|
|
sha256 = "sha256:078r0bgncgadsv4v82kxmq2mvd19grssakjn0syrv61a96vmfyjj";
|
2019-10-09 00:54:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./libsearpc.pc.patch ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ automake autoconf libtool python2Packages.python python2Packages.simplejson ];
|
|
|
|
propagatedBuildInputs = [ glib jansson ];
|
|
|
|
|
|
|
|
postPatch = "patchShebangs autogen.sh";
|
|
|
|
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/haiwen/libsearpc;
|
|
|
|
description = "A simple and easy-to-use C language RPC framework (including both server side & client side) based on GObject System";
|
|
|
|
license = licenses.lgpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ schmittlauch ];
|
|
|
|
};
|
|
|
|
}
|