2014-02-04 19:02:46 +00:00
|
|
|
{stdenv, fetchurl, automake, autoconf, pkgconfig, libtool, python, pythonPackages, glib, jansson}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec
|
|
|
|
{
|
2014-05-24 02:32:02 +01:00
|
|
|
version = "1.2.2";
|
|
|
|
seafileVersion = "3.0.4";
|
2014-02-04 19:02:46 +00:00
|
|
|
name = "libsearpc-${version}";
|
|
|
|
|
|
|
|
src = fetchurl
|
|
|
|
{
|
|
|
|
url = "https://github.com/haiwen/libsearpc/archive/v${seafileVersion}.tar.gz";
|
2014-05-24 02:32:02 +01:00
|
|
|
sha256 = "0s5bqqajxfzyw4km6nhhx39nyq20gv0fxlf2v6ifipvnyk14850k";
|
2014-02-04 19:02:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./libsearpc.pc.patch ];
|
|
|
|
|
|
|
|
buildInputs = [ automake autoconf pkgconfig libtool python pythonPackages.simplejson ];
|
|
|
|
propagatedBuildInputs = [ glib jansson ];
|
|
|
|
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
|
|
|
|
buildPhase = "make -j1";
|
|
|
|
|
|
|
|
meta =
|
|
|
|
{
|
|
|
|
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 = stdenv.lib.licenses.lgpl3;
|
2014-02-28 16:10:43 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-02-04 19:02:46 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.calrama ];
|
|
|
|
};
|
2014-05-24 02:32:02 +01:00
|
|
|
}
|