lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

libjson_rpc_cpp_0_2_1: remove

-32
-30
pkgs/development/libraries/libjson-rpc-cpp/0.2.1/default.nix
··· 1 - { stdenv, fetchurl, cmake, curl }: 2 - 3 - let 4 - basename = "libjson-rpc-cpp"; 5 - version = "0.2.1"; 6 - in 7 - 8 - stdenv.mkDerivation { 9 - name = "${basename}-${version}"; 10 - 11 - src = fetchurl { 12 - url = "https://github.com/cinemast/${basename}/archive/${version}.tar.gz"; 13 - sha256 = "1pc9nn4968qkda8vr4f9dijn2fcldm8i0ymwmql29h4cl5ghdnpw"; 14 - }; 15 - 16 - buildInputs = [ cmake curl ]; 17 - 18 - NIX_LDFLAGS = "-lpthread"; 19 - enableParallelBuilding = true; 20 - doCheck = true; 21 - 22 - checkPhase = "LD_LIBRARY_PATH=out/ ctest"; 23 - 24 - meta = { 25 - description = "C++ framework for json-rpc (json remote procedure call)"; 26 - homepage = https://github.com/cinemast/libjson-rpc-cpp; 27 - license = stdenv.lib.licenses.mit; 28 - platforms = stdenv.lib.platforms.linux; 29 - }; 30 - }
-2
pkgs/top-level/all-packages.nix
··· 8429 8429 8430 8430 libjson-rpc-cpp = callPackage ../development/libraries/libjson-rpc-cpp { }; 8431 8431 8432 - libjson_rpc_cpp_0_2_1 = callPackage ../development/libraries/libjson-rpc-cpp/0.2.1 { }; 8433 - 8434 8432 libkate = callPackage ../development/libraries/libkate { }; 8435 8433 8436 8434 libksba = callPackage ../development/libraries/libksba { };