3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/c-ares/default.nix

18 lines
425 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "c-ares-1.13.0";
src = fetchurl {
url = "http://c-ares.haxx.se/download/${name}.tar.gz";
sha256 = "19qxhv9aiw903fr808y77r6l9js0fq9m3gcaqckan9jan7qhixq3";
};
2015-05-01 22:36:51 +01:00
meta = with stdenv.lib; {
description = "A C library for asynchronous DNS requests";
2017-08-17 23:00:50 +01:00
homepage = https://c-ares.haxx.se;
2015-05-01 22:36:51 +01:00
license = licenses.mit;
platforms = platforms.all;
};
}