nixpkgs/pkgs/development/libraries/cpp-netlib/default.nix

37 lines
916 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, boost, openssl }:
2014-05-17 13:32:56 +00:00
stdenv.mkDerivation rec {
2019-08-03 17:17:01 +00:00
pname = "cpp-netlib";
version = "0.13.0-final";
2014-05-17 13:32:56 +00:00
2019-08-03 17:17:01 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "${pname}-${version}";
sha256 = "18782sz7aggsl66b4mmi1i0ijwa76iww337fi9sygnplz2hs03a3";
fetchSubmodules = true;
2014-05-17 13:32:56 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ boost openssl ];
2014-05-17 13:32:56 +00:00
2016-04-02 18:52:11 +00:00
cmakeFlags = [
"-DCPP-NETLIB_BUILD_SHARED_LIBS=ON"
];
2014-05-17 13:32:56 +00:00
# The test driver binary lacks an RPath to the library's libs
preCheck = ''
export LD_LIBRARY_PATH=$PWD/libs/network/src
'';
# Most tests make network GET requests to various websites
doCheck = false;
meta = with lib; {
description = "Collection of open-source libraries for high level network programming";
homepage = "https://cpp-netlib.org";
2014-09-19 17:56:08 +00:00
license = licenses.boost;
platforms = platforms.all;
2014-05-17 13:32:56 +00:00
};
}