2018-08-20 19:43:41 +01:00
|
|
|
{ stdenv, fetchurl, writeTextDir }:
|
2013-05-23 22:09:04 +01:00
|
|
|
|
2018-01-09 02:27:12 +00:00
|
|
|
let self =
|
2013-05-23 22:09:04 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-11-02 13:36:29 +00:00
|
|
|
name = "c-ares-1.15.0";
|
2013-05-23 22:09:04 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://c-ares.haxx.se/download/${name}.tar.gz";
|
2018-11-02 13:36:29 +00:00
|
|
|
sha256 = "0lk8knip4xk6qzksdkn7085mmgm4ixfczdyyjw656c193y3rgnvc";
|
2013-05-23 22:09:04 +01:00
|
|
|
};
|
|
|
|
|
2015-05-01 22:36:51 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-05-23 22:09:04 +01:00
|
|
|
description = "A C library for asynchronous DNS requests";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://c-ares.haxx.se";
|
2015-05-01 22:36:51 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
2013-05-23 22:09:04 +01:00
|
|
|
};
|
2018-01-09 02:27:12 +00:00
|
|
|
|
|
|
|
# Adapted from running a cmake build
|
|
|
|
passthru.cmake-config = writeTextDir "c-ares-config.cmake"
|
|
|
|
''
|
|
|
|
set(c-ares_INCLUDE_DIR "${self}/include")
|
|
|
|
|
|
|
|
set(c-ares_LIBRARY c-ares::cares)
|
|
|
|
|
|
|
|
add_library(c-ares::cares SHARED IMPORTED)
|
|
|
|
|
|
|
|
set_target_properties(c-ares::cares PROPERTIES
|
|
|
|
INTERFACE_INCLUDE_DIRECTORIES "${self}/include"
|
2018-08-16 20:30:56 +01:00
|
|
|
${stdenv.lib.optionalString stdenv.isLinux ''INTERFACE_LINK_LIBRARIES "nsl;rt"''}
|
2018-01-09 02:27:12 +00:00
|
|
|
)
|
|
|
|
set_property(TARGET c-ares::cares APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
|
|
|
|
set_target_properties(c-ares::cares PROPERTIES
|
2018-08-20 19:43:41 +01:00
|
|
|
IMPORTED_LOCATION_RELEASE "${self}/lib/libcares${stdenv.targetPlatform.extensions.sharedLibrary}"
|
|
|
|
IMPORTED_SONAME_RELEASE "libcares${stdenv.targetPlatform.extensions.sharedLibrary}"
|
2018-01-09 02:27:12 +00:00
|
|
|
)
|
|
|
|
add_library(c-ares::cares_shared INTERFACE IMPORTED)
|
|
|
|
set_target_properties(c-ares::cares_shared PROPERTIES INTERFACE_LINK_LIBRARIES "c-ares::cares")
|
|
|
|
set(c-ares_SHARED_LIBRARY c-ares::cares_shared)
|
|
|
|
'';
|
|
|
|
|
|
|
|
}; in self
|