cpp-netlib: 0.11.2 -> 0.12.0

This commit is contained in:
Tobias Geerinckx-Rice 2016-04-02 20:52:11 +02:00
parent cf39ca1950
commit 621218c3c1

View file

@ -2,21 +2,25 @@
stdenv.mkDerivation rec {
name = "cpp-netlib-${version}";
version = "0.11.2";
version = "0.12.0";
src = fetchurl {
url = "http://downloads.cpp-netlib.org/${version}/${name}-final.tar.bz2";
sha256 = "0vwnp1jpvsdjaz7f7w55p7gw6hj7694nklmljcvphvkrhbw1g1q5";
sha256 = "0h7gyrbr3madycnj8rl8k1jzk2hd8np2k5ad9mijlh0fizzzk3h8";
};
buildInputs = [ cmake boost openssl ];
cmakeFlags = [ "-DCPP-NETLIB_BUILD_SHARED_LIBS=ON" "-DCMAKE_BUILD_TYPE=RELEASE" ];
cmakeFlags = [
"-DCPP-NETLIB_BUILD_SHARED_LIBS=ON"
"-DCMAKE_BUILD_TYPE=RELEASE"
];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "A collection of open-source libraries for high level network programming";
description =
"Collection of open-source libraries for high level network programming";
homepage = http://cpp-netlib.org;
license = licenses.boost;
platforms = platforms.all;