asio: add old version 1.10.8 (#41822)

This commit is contained in:
Izorkin
2018-06-11 20:03:09 +02:00
committed by xeji
parent a176f5e702
commit 2f73a373db
5 changed files with 40 additions and 22 deletions
@@ -0,0 +1,25 @@
{stdenv, fetchurl, boost, openssl
, version, sha256, ...
}:
with stdenv.lib;
stdenv.mkDerivation {
name = "asio-${version}";
src = fetchurl {
url = "mirror://sourceforge/asio/asio-${version}.tar.bz2";
inherit sha256;
};
propagatedBuildInputs = [ boost ];
buildInputs = [ openssl ];
meta = {
homepage = http://asio.sourceforge.net/;
description = "Cross-platform C++ library for network and low-level I/O programming";
license = licenses.boost;
platforms = platforms.unix;
};
}