2016-11-09 06:11:21 -08:00
|
|
|
{stdenv, fetchurl, automake, autoconf, pkgconfig, libtool, python2Packages, glib, jansson}:
|
2014-02-04 11:02:46 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec
|
|
|
|
{
|
2016-04-22 17:52:42 -07:00
|
|
|
version = "3.0.7";
|
2017-08-06 10:09:33 -07:00
|
|
|
seafileVersion = "6.1.0";
|
2014-02-04 11:02:46 -08:00
|
|
|
name = "libsearpc-${version}";
|
|
|
|
|
|
|
|
src = fetchurl
|
|
|
|
{
|
2016-04-22 17:52:42 -07:00
|
|
|
url = "https://github.com/haiwen/libsearpc/archive/v${version}.tar.gz";
|
|
|
|
sha256 = "0fdrgksdwd4qxp7qvh75y39dy52h2f5wfjbqr00h3rwkbx4npvpg";
|
2014-02-04 11:02:46 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./libsearpc.pc.patch ];
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ automake autoconf libtool python2Packages.python python2Packages.simplejson ];
|
2014-02-04 11:02:46 -08:00
|
|
|
propagatedBuildInputs = [ glib jansson ];
|
|
|
|
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
|
|
|
|
buildPhase = "make -j1";
|
|
|
|
|
|
|
|
meta =
|
|
|
|
{
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = https://github.com/haiwen/libsearpc;
|
2014-11-11 05:20:43 -08:00
|
|
|
description = "A simple and easy-to-use C language RPC framework (including both server side & client side) based on GObject System";
|
2014-02-04 11:02:46 -08:00
|
|
|
license = stdenv.lib.licenses.lgpl3;
|
2014-02-28 08:10:43 -08:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2018-03-10 15:46:41 -08:00
|
|
|
maintainers = [ ];
|
2014-02-04 11:02:46 -08:00
|
|
|
};
|
2014-05-23 18:32:02 -07:00
|
|
|
}
|