blob: 2707dd05f616eb4fae2b6f66a08a841ec3f7513e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
pkgs: attrs: with pkgs; with attrs; rec {
version = "1.34.3";
src = fetchFromGitHub {
owner = "c-ares";
repo = "c-ares";
rev= "v${version}";
hash = "sha256-vCVS0kr/l6iRVWRnRM+J8aWheDEqEVVekjF8f4Naj/0=";
};
patches = [];
cmakeFlags = [
"-DCARES_BUILD_TESTS=OFF"
"-DCARES_SHARED=ON"
"-DCARES_STATIC=OFF"
];
}
|