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

26 lines
746 B
Nix
Raw Normal View History

2014-05-17 17:32:56 +04:00
{ stdenv, fetchurl, cmake, boost, openssl }:
stdenv.mkDerivation rec {
name = "cpp-netlib-${version}";
version = "0.11.2";
2014-05-17 17:32:56 +04:00
src = fetchurl {
url = "http://downloads.cpp-netlib.org/${version}/${name}-final.tar.bz2";
sha256 = "0vwnp1jpvsdjaz7f7w55p7gw6hj7694nklmljcvphvkrhbw1g1q5";
2014-05-17 17:32:56 +04:00
};
2014-10-01 23:55:40 +04:00
buildInputs = [ cmake boost openssl ];
2014-05-17 17:32:56 +04:00
cmakeFlags = [ "-DCPP-NETLIB_BUILD_SHARED_LIBS=ON" "-DCMAKE_BUILD_TYPE=RELEASE" ];
enableParallelBuilding = true;
2014-09-19 21:56:08 +04:00
meta = with stdenv.lib; {
2014-05-17 17:32:56 +04:00
description = "A collection of open-source libraries for high level network programming";
homepage = http://cpp-netlib.org;
2014-09-19 21:56:08 +04:00
license = licenses.boost;
platforms = platforms.all;
maintainers = with maintainers; [ nckx ];
2014-05-17 17:32:56 +04:00
};
}