summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-23 17:34:01 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-08-23 17:46:45 +0200
commitf31bd3afeae283c1832a68bf9f98f189d8b17ac6 (patch)
treebd9c36bcb283a9b87da1c3e5e86a42914f1ccf89 /pkgs
parent0d80f9659c7cda766a5309f74378aba7d4f9a304 (diff)
downloadnixlib-f31bd3afeae283c1832a68bf9f98f189d8b17ac6.tar
nixlib-f31bd3afeae283c1832a68bf9f98f189d8b17ac6.tar.gz
nixlib-f31bd3afeae283c1832a68bf9f98f189d8b17ac6.tar.bz2
nixlib-f31bd3afeae283c1832a68bf9f98f189d8b17ac6.tar.lz
nixlib-f31bd3afeae283c1832a68bf9f98f189d8b17ac6.tar.xz
nixlib-f31bd3afeae283c1832a68bf9f98f189d8b17ac6.tar.zst
nixlib-f31bd3afeae283c1832a68bf9f98f189d8b17ac6.zip
libsearpc: 3.0.8 -> 3.1.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/libsearpc/default.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/pkgs/development/libraries/libsearpc/default.nix b/pkgs/development/libraries/libsearpc/default.nix
index c2f0da910055..3ba80198fd72 100644
--- a/pkgs/development/libraries/libsearpc/default.nix
+++ b/pkgs/development/libraries/libsearpc/default.nix
@@ -1,15 +1,14 @@
 {stdenv, fetchFromGitHub, automake, autoconf, pkgconfig, libtool, python2Packages, glib, jansson}:
 
 stdenv.mkDerivation rec {
-  version = "3.0.8";
+  version = "3.1.0";
   name = "libsearpc-${version}";
 
   src = fetchFromGitHub {
     owner = "haiwen";
     repo = "libsearpc";
-    # Tag is missing: https://github.com/haiwen/libsearpc/commit/12a01268825e9c7e17794c58c367e3b4db912ad9
-    rev = "12a01268825e9c7e17794c58c367e3b4db912ad9";
-    sha256 = "00ck1hl1x0pn22q3ba32dq3ckc4nrsg58irsmrnmalqbsffhcim0";
+    rev = "v${version}";
+    sha256 = "1zf8xxsl95wdx0372kl8s153hd8q3lhwwvwr2k96ia8scbn2ylkp";
   };
 
   patches = [ ./libsearpc.pc.patch ];
@@ -22,13 +21,11 @@ stdenv.mkDerivation rec {
 
   preConfigure = "./autogen.sh";
 
-  buildPhase = "make -j1";
-
-  meta = {
+  meta = with stdenv.lib; {
     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;
-    platforms = stdenv.lib.platforms.linux;
-    maintainers = [ ];
+    license = licenses.lgpl3;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ dotlambda ];
   };
 }