about summary refs log tree commit diff
path: root/pkgs/development/libraries/libsearpc
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-06-26 23:51:11 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-07-06 10:18:15 +0200
commit77ab76d4b70372308bfae618898bb6aac43f1ac0 (patch)
treeb0eaac44ae60dd742d61eb80df8b34d57d4d8357 /pkgs/development/libraries/libsearpc
parentc6be09c29bbfdb892290163265e9d275619b4a23 (diff)
downloadnixlib-77ab76d4b70372308bfae618898bb6aac43f1ac0.tar
nixlib-77ab76d4b70372308bfae618898bb6aac43f1ac0.tar.gz
nixlib-77ab76d4b70372308bfae618898bb6aac43f1ac0.tar.bz2
nixlib-77ab76d4b70372308bfae618898bb6aac43f1ac0.tar.lz
nixlib-77ab76d4b70372308bfae618898bb6aac43f1ac0.tar.xz
nixlib-77ab76d4b70372308bfae618898bb6aac43f1ac0.tar.zst
nixlib-77ab76d4b70372308bfae618898bb6aac43f1ac0.zip
libsearpc: 3.0.7 -> 3.0.8
Diffstat (limited to 'pkgs/development/libraries/libsearpc')
-rw-r--r--pkgs/development/libraries/libsearpc/default.nix23
1 files changed, 12 insertions, 11 deletions
diff --git a/pkgs/development/libraries/libsearpc/default.nix b/pkgs/development/libraries/libsearpc/default.nix
index fae6dc82fcf6..c2f0da910055 100644
--- a/pkgs/development/libraries/libsearpc/default.nix
+++ b/pkgs/development/libraries/libsearpc/default.nix
@@ -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
-{
-  version = "3.0.7";
-  seafileVersion = "6.1.0";
+stdenv.mkDerivation rec {
+  version = "3.0.8";
   name = "libsearpc-${version}";
 
-  src = fetchurl
-  {
-    url = "https://github.com/haiwen/libsearpc/archive/v${version}.tar.gz";
-    sha256 = "0fdrgksdwd4qxp7qvh75y39dy52h2f5wfjbqr00h3rwkbx4npvpg";
+  src = fetchFromGitHub {
+    owner = "haiwen";
+    repo = "libsearpc";
+    # Tag is missing: https://github.com/haiwen/libsearpc/commit/12a01268825e9c7e17794c58c367e3b4db912ad9
+    rev = "12a01268825e9c7e17794c58c367e3b4db912ad9";
+    sha256 = "00ck1hl1x0pn22q3ba32dq3ckc4nrsg58irsmrnmalqbsffhcim0";
   };
 
   patches = [ ./libsearpc.pc.patch ];
@@ -18,12 +18,13 @@ stdenv.mkDerivation rec
   buildInputs = [ automake autoconf libtool python2Packages.python python2Packages.simplejson ];
   propagatedBuildInputs = [ glib jansson ];
 
+  postPatch = "patchShebangs autogen.sh";
+
   preConfigure = "./autogen.sh";
 
   buildPhase = "make -j1";
 
-  meta =
-  {
+  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;