libsearpc: 3.0.7 -> 3.0.8
This commit is contained in:
parent
c6be09c29b
commit
77ab76d4b7
@ -1,15 +1,15 @@
|
|||||||
{stdenv, fetchurl, automake, autoconf, pkgconfig, libtool, python2Packages, glib, jansson}:
|
{stdenv, fetchFromGitHub, automake, autoconf, pkgconfig, libtool, python2Packages, glib, jansson}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec
|
stdenv.mkDerivation rec {
|
||||||
{
|
version = "3.0.8";
|
||||||
version = "3.0.7";
|
|
||||||
seafileVersion = "6.1.0";
|
|
||||||
name = "libsearpc-${version}";
|
name = "libsearpc-${version}";
|
||||||
|
|
||||||
src = fetchurl
|
src = fetchFromGitHub {
|
||||||
{
|
owner = "haiwen";
|
||||||
url = "https://github.com/haiwen/libsearpc/archive/v${version}.tar.gz";
|
repo = "libsearpc";
|
||||||
sha256 = "0fdrgksdwd4qxp7qvh75y39dy52h2f5wfjbqr00h3rwkbx4npvpg";
|
# Tag is missing: https://github.com/haiwen/libsearpc/commit/12a01268825e9c7e17794c58c367e3b4db912ad9
|
||||||
|
rev = "12a01268825e9c7e17794c58c367e3b4db912ad9";
|
||||||
|
sha256 = "00ck1hl1x0pn22q3ba32dq3ckc4nrsg58irsmrnmalqbsffhcim0";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./libsearpc.pc.patch ];
|
patches = [ ./libsearpc.pc.patch ];
|
||||||
@ -18,12 +18,13 @@ stdenv.mkDerivation rec
|
|||||||
buildInputs = [ automake autoconf libtool python2Packages.python python2Packages.simplejson ];
|
buildInputs = [ automake autoconf libtool python2Packages.python python2Packages.simplejson ];
|
||||||
propagatedBuildInputs = [ glib jansson ];
|
propagatedBuildInputs = [ glib jansson ];
|
||||||
|
|
||||||
|
postPatch = "patchShebangs autogen.sh";
|
||||||
|
|
||||||
preConfigure = "./autogen.sh";
|
preConfigure = "./autogen.sh";
|
||||||
|
|
||||||
buildPhase = "make -j1";
|
buildPhase = "make -j1";
|
||||||
|
|
||||||
meta =
|
meta = {
|
||||||
{
|
|
||||||
homepage = https://github.com/haiwen/libsearpc;
|
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";
|
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;
|
license = stdenv.lib.licenses.lgpl3;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user