Files
nixpkgs/pkgs/development/libraries/asio/default.nix
T

22 lines
542 B
Nix
Raw Normal View History

2011-03-28 16:08:21 +00:00
{stdenv, fetchurl, boost, openssl}:
stdenv.mkDerivation rec {
2015-04-05 23:04:01 -07:00
name = "asio-1.10.6";
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";
2015-04-05 23:04:01 -07:00
sha256 = "0phr6zq8z78dwhhzs3h27q32mcv1ffg2gyq880rw3xmilx01rmz0";
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;
2016-08-02 20:50:55 +03:00
platforms = stdenv.lib.platforms.unix;
2011-03-28 16:08:21 +00:00
};
}