2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, writeTextDir }:
|
2013-05-23 21:09:04 +00:00
|
|
|
|
2020-06-26 20:44:45 +00:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2018-01-09 02:27:12 +00:00
|
|
|
let self =
|
2013-05-23 21:09:04 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-11-19 23:44:46 +00:00
|
|
|
pname = "c-ares";
|
2021-12-11 20:58:36 +00:00
|
|
|
version = "1.18.1";
|
2013-05-23 21:09:04 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-11-19 23:44:46 +00:00
|
|
|
url = "https://c-ares.haxx.se/download/${pname}-${version}.tar.gz";
|
2021-12-11 20:58:36 +00:00
|
|
|
sha256 = "sha256-Gn1SqKhKn7/7G+kTPA9uFyF9kepab6Yfa0cpzaeOu88=";
|
2013-05-23 21:09:04 +00:00
|
|
|
};
|
|
|
|
|
2021-08-19 02:16:24 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2013-05-23 21:09:04 +00:00
|
|
|
description = "A C library for asynchronous DNS requests";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://c-ares.haxx.se";
|
2015-05-01 21:36:51 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
2013-05-23 21:09:04 +00: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"
|
2021-01-21 17:00:13 +00:00
|
|
|
${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 18:43:41 +00: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
|