nixpkgs/pkgs/development/libraries/libsearpc/default.nix

32 lines
969 B
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 {
2019-11-02 07:39:36 +00:00
version = "3.2.0";
pname = "libsearpc";
2018-06-26 22:51:11 +01:00
src = fetchFromGitHub {
owner = "haiwen";
repo = "libsearpc";
2018-08-23 16:34:01 +01:00
rev = "v${version}";
2019-11-02 07:39:36 +00:00
sha256 = "18i5zvrp6dv6vygxx5nc93mai2p2x786n5lnf5avrin6xiz2j6hd";
};
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";
2018-08-23 16:34:01 +01:00
meta = with stdenv.lib; {
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";
2018-08-23 16:34:01 +01:00
license = licenses.lgpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ ];
};
}