nixpkgs/pkgs/development/libraries/libjson-rpc-cpp/default.nix

31 lines
726 B
Nix
Raw Normal View History

2013-10-14 14:11:46 +00:00
{ stdenv, fetchurl, cmake, curl }:
let
basename = "libjson-rpc-cpp";
2013-10-14 14:11:46 +00:00
version = "0.2.1";
in
stdenv.mkDerivation {
name = "${basename}-${version}";
2013-10-14 14:11:46 +00:00
src = fetchurl {
url = "https://github.com/cinemast/${basename}/archive/${version}.tar.gz";
2013-10-14 14:11:46 +00:00
sha256 = "1pc9nn4968qkda8vr4f9dijn2fcldm8i0ymwmql29h4cl5ghdnpw";
};
buildInputs = [ cmake curl ];
NIX_LDFLAGS = "-lpthread";
enableParallelBuilding = true;
doCheck = true;
checkPhase = "LD_LIBRARY_PATH=out/ ctest";
meta = {
description = "C++ framework for json-rpc (json remote procedure call)";
homepage = https://github.com/cinemast/libjson-rpc-cpp;
license = stdenv.lib.licenses.mit;
2013-10-14 14:11:46 +00:00
platforms = stdenv.lib.platforms.linux;
};
}