mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
libjson_rpc_cpp_0_2_1: remove
This commit is contained in:
parent
efd9331333
commit
8ddfbe34bc
@ -1,30 +0,0 @@
|
||||
{ stdenv, fetchurl, cmake, curl }:
|
||||
|
||||
let
|
||||
basename = "libjson-rpc-cpp";
|
||||
version = "0.2.1";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "${basename}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/cinemast/${basename}/archive/${version}.tar.gz";
|
||||
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;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -8429,8 +8429,6 @@ with pkgs;
|
||||
|
||||
libjson-rpc-cpp = callPackage ../development/libraries/libjson-rpc-cpp { };
|
||||
|
||||
libjson_rpc_cpp_0_2_1 = callPackage ../development/libraries/libjson-rpc-cpp/0.2.1 { };
|
||||
|
||||
libkate = callPackage ../development/libraries/libkate { };
|
||||
|
||||
libksba = callPackage ../development/libraries/libksba { };
|
||||
|
Loading…
Reference in New Issue
Block a user