Add packages for libzdb, libsearpc, ccnet, seafile-shared, and seafile-client
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
{stdenv, fetchurl, automake, autoconf, pkgconfig, libtool, python, pythonPackages, glib, jansson}:
|
||||
|
||||
stdenv.mkDerivation rec
|
||||
{
|
||||
version = "1.2.1";
|
||||
seafileVersion = "2.1.1";
|
||||
name = "libsearpc-${version}";
|
||||
|
||||
src = fetchurl
|
||||
{
|
||||
url = "https://github.com/haiwen/libsearpc/archive/v${seafileVersion}.tar.gz";
|
||||
sha256 = "c0e7cc812c642ebb1339c3701570e78ff5b8c8aa2a521e5a505e28d9666e89ec";
|
||||
};
|
||||
|
||||
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;
|
||||
maintainers = [ stdenv.lib.maintainers.calrama ];
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
From: Aaron Lindsay <aaron@aclindsay.com>
|
||||
|
||||
--- a/libsearpc.pc.in 2013-01-10 01:35:24.000000000 -0500
|
||||
+++ b/libsearpc.pc.in 2013-01-19 11:31:50.479301798 -0500
|
||||
@@ -1,4 +1,4 @@
|
||||
-prefix=(DESTDIR)@prefix@
|
||||
+prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=@includedir@
|
||||
Reference in New Issue
Block a user