1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-12 07:34:36 +00:00
nixpkgs/pkgs/development/libraries/libsearpc/default.nix

35 lines
1.1 KiB
Nix
Raw Normal View History

2018-06-26 22:51:11 +01:00
{stdenv, fetchFromGitHub, automake, autoconf, pkgconfig, libtool, python2Packages, glib, jansson}:
2018-06-26 22:51:11 +01:00
stdenv.mkDerivation rec {
version = "3.0.8";
name = "libsearpc-${version}";
2018-06-26 22:51:11 +01:00
src = fetchFromGitHub {
owner = "haiwen";
repo = "libsearpc";
# Tag is missing: https://github.com/haiwen/libsearpc/commit/12a01268825e9c7e17794c58c367e3b4db912ad9
rev = "12a01268825e9c7e17794c58c367e3b4db912ad9";
sha256 = "00ck1hl1x0pn22q3ba32dq3ckc4nrsg58irsmrnmalqbsffhcim0";
};
patches = [ ./libsearpc.pc.patch ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ automake autoconf libtool python2Packages.python python2Packages.simplejson ];
propagatedBuildInputs = [ glib jansson ];
2018-06-26 22:51:11 +01:00
postPatch = "patchShebangs autogen.sh";
preConfigure = "./autogen.sh";
buildPhase = "make -j1";
2018-06-26 22:51:11 +01:00
meta = {
homepage = https://github.com/haiwen/libsearpc;
2014-11-11 13:20:43 +00:00
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;
2018-03-10 23:46:41 +00:00
maintainers = [ ];
};
}