Merge pull request #5080 from joachifm/dnscrypt-refactor
dnscrypt-proxy: minor superficial improvements
This commit is contained in:
commit
fd5566da41
|
@ -6,7 +6,8 @@ let
|
|||
dnscrypt-proxy = pkgs.dnscrypt-proxy;
|
||||
cfg = config.services.dnscrypt-proxy;
|
||||
uid = config.ids.uids.dnscrypt-proxy;
|
||||
daemonArgs = [ "--daemonize"
|
||||
daemonArgs =
|
||||
[ "--daemonize"
|
||||
"--user=dnscrypt-proxy"
|
||||
"--local-address=${cfg.localAddress}:${toString cfg.port}"
|
||||
(optionalString cfg.tcpOnly "--tcp-only")
|
||||
|
|
|
@ -11,9 +11,10 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [ libsodium ];
|
||||
|
||||
meta = {
|
||||
description = "A DNS proxy which encrypts and authenticates requests using the DNSCrypt protocol.";
|
||||
description = "A tool for securing communications between a client and a DNS resolver";
|
||||
homepage = http://dnscrypt.org/;
|
||||
license = with stdenv.lib.licenses; [ isc ];
|
||||
maintainers = with stdenv.lib.maintainers; [ joachifm ];
|
||||
platform = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue