nixpkgs/pkgs/development/libraries/c-ares/default.nix

18 lines
424 B
Nix
Raw Normal View History

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