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 21:36:51 +00:00
meta = with stdenv.lib; {
description = "A C library for asynchronous DNS requests";
2017-08-17 22:00:50 +00:00
homepage = https://c-ares.haxx.se;
2015-05-01 21:36:51 +00:00
license = licenses.mit;
platforms = platforms.all;
};
}