2011-03-28 16:08:21 +00:00
|
|
|
{stdenv, fetchurl, boost, openssl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-10-09 18:17:24 +00:00
|
|
|
name = "asio-1.10.4";
|
2014-11-06 00:44:33 +00:00
|
|
|
|
2011-03-28 16:08:21 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/asio/${name}.tar.bz2";
|
2014-10-09 18:17:24 +00:00
|
|
|
sha256 = "0jminwr84wphwpph7j820cql7cbaqlj2zv4gfjk2imazpmlhsfri";
|
2011-03-28 16:08:21 +00: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;
|
2011-03-28 16:08:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|