asio: add old version 1.10.8 (#41822)
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user