2013-05-24 01:09:04 +04:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-07-22 06:49:59 +03:00
|
|
|
name = "c-ares-1.13.0";
|
2013-05-24 01:09:04 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://c-ares.haxx.se/download/${name}.tar.gz";
|
2017-07-22 06:49:59 +03:00
|
|
|
sha256 = "19qxhv9aiw903fr808y77r6l9js0fq9m3gcaqckan9jan7qhixq3";
|
2013-05-24 01:09:04 +04:00
|
|
|
};
|
|
|
|
|
2015-05-02 00:36:51 +03:00
|
|
|
meta = with stdenv.lib; {
|
2013-05-24 01:09:04 +04:00
|
|
|
description = "A C library for asynchronous DNS requests";
|
|
|
|
homepage = http://c-ares.haxx.se;
|
2015-05-02 00:36:51 +03:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
2013-05-24 01:09:04 +04:00
|
|
|
};
|
|
|
|
}
|