nixpkgs/pkgs/tools/networking/smartdns/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, openssl, testers, smartdns }:
2020-03-12 16:13:12 +00:00
stdenv.mkDerivation rec {
pname = "smartdns";
2024-06-26 03:33:14 +00:00
version = "46";
2020-03-12 16:13:12 +00:00
src = fetchFromGitHub {
owner = "pymumu";
repo = pname;
rev = "Release${version}";
2024-06-26 03:33:14 +00:00
hash = "sha256-7JNP8vacYENBbbCxBtSpVu9j5vCBVBsQ/OeVPoRxlE4=";
2020-03-12 16:13:12 +00:00
};
buildInputs = [ openssl ];
makeFlags = [
"PREFIX=${placeholder "out"}"
"SYSTEMDSYSTEMUNITDIR=${placeholder "out"}/lib/systemd/system"
"RUNSTATEDIR=/run"
2022-04-03 19:46:07 +00:00
# by default it is the build time... weird... https://github.com/pymumu/smartdns/search?q=ver
"VER=${version}"
2020-03-12 16:13:12 +00:00
];
installFlags = [ "SYSCONFDIR=${placeholder "out"}/etc" ];
2022-04-03 19:46:07 +00:00
passthru.tests = {
2024-03-07 08:36:35 +00:00
version = testers.testVersion {
package = smartdns;
command = "smartdns -v";
};
2022-04-03 19:46:07 +00:00
};
meta = with lib; {
2020-03-12 16:13:12 +00:00
description =
"A local DNS server to obtain the fastest website IP for the best Internet experience";
longDescription = ''
SmartDNS is a local DNS server. SmartDNS accepts DNS query requests from local clients, obtains DNS query results from multiple upstream DNS servers, and returns the fastest access results to clients.
Avoiding DNS pollution and improving network access speed, supports high-performance ad filtering.
Unlike dnsmasq's all-servers, smartdns returns the fastest access resolution.
'';
homepage = "https://github.com/pymumu/smartdns";
maintainers = [ maintainers.lexuge ];
license = licenses.gpl3Plus;
platforms = platforms.linux;
2024-02-11 02:19:15 +00:00
mainProgram = "smartdns";
2020-03-12 16:13:12 +00:00
};
}