2011-03-28 17:08:21 +01:00
|
|
|
{stdenv, fetchurl, boost, openssl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-04-17 14:39:14 +01:00
|
|
|
name = "asio-1.12.1";
|
2014-11-06 00:44:33 +00:00
|
|
|
|
2011-03-28 17:08:21 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/asio/${name}.tar.bz2";
|
2018-04-17 14:39:14 +01:00
|
|
|
sha256 = "0nln45662kg799ykvqx5m9z9qcsmadmgg6r5najryls7x16in2d9";
|
2011-03-28 17:08:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ boost ];
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://asio.sourceforge.net/;
|
|
|
|
description = "Cross-platform C++ library for network and low-level I/O programming";
|
2014-11-06 00:44:33 +00:00
|
|
|
license = stdenv.lib.licenses.boost;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-03-28 17:08:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|