Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
62 lines
1.4 KiB
Nix
62 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
gtest,
|
|
c-ares,
|
|
curl,
|
|
libev,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "https-dns-proxy";
|
|
# there are no stable releases (yet?)
|
|
version = "0-unstable-2024-11-18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aarond10";
|
|
repo = "https_dns_proxy";
|
|
rev = "484bd153bb85a51df1c5bede1b091be76537e0a7";
|
|
hash = "sha256-T4l3kQ2hPgmyKE7xzlkDDUD6AQi8dQPJQnw8NhUUhDY=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace https_dns_proxy.service.in \
|
|
--replace "\''${CMAKE_INSTALL_PREFIX}/" ""
|
|
substituteInPlace munin/https_dns_proxy.plugin \
|
|
--replace '--unit https_dns_proxy.service' '--unit https-dns-proxy.service'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
gtest
|
|
];
|
|
|
|
buildInputs = [
|
|
c-ares
|
|
curl
|
|
libev
|
|
];
|
|
|
|
postInstall = ''
|
|
install -Dm444 -t $out/share/doc/${pname} ../{LICENSE,*.md}
|
|
install -Dm444 -t $out/share/${pname}/munin ../munin/*
|
|
# the systemd service definition is garbage, and we use our own with NixOS
|
|
mv $out/lib/systemd $out/share/${pname}
|
|
rmdir $out/lib
|
|
'';
|
|
|
|
# upstream wants to add tests and the gtest framework is in place, so be ready
|
|
# for when that happens despite there being none as of right now
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "DNS to DNS over HTTPS (DoH) proxy";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "https_dns_proxy";
|
|
};
|
|
}
|