28 lines
597 B
Nix
28 lines
597 B
Nix
{lib, stdenv, fetchurl, boost, openssl
|
|
, version, sha256, ...
|
|
}:
|
|
|
|
with lib;
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "asio";
|
|
inherit 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;
|
|
broken = stdenv.isDarwin && lib.versionOlder version "1.16.1";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|