mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
postfix-tlspol: 1.8.15 -> 1.8.16
https://github.com/Zuplu/postfix-tlspol/releases/tag/v1.8.16
This commit is contained in:
@@ -94,16 +94,13 @@ in
|
|||||||
|
|
||||||
dns = {
|
dns = {
|
||||||
address = mkOption {
|
address = mkOption {
|
||||||
type = types.str;
|
type = with types; nullOr str;
|
||||||
default = if config.networking.resolvconf.useLocalResolver then "127.0.0.1:53" else null;
|
default = null;
|
||||||
defaultText = literalExpression ''
|
example = "127.0.0.1:53";
|
||||||
if config.networking.resolvconf.useLocalResolver then
|
|
||||||
"127.0.0.1:53"
|
|
||||||
else
|
|
||||||
null
|
|
||||||
'';
|
|
||||||
description = ''
|
description = ''
|
||||||
IP and port to your DNS resolver
|
IP and port to your DNS resolver.
|
||||||
|
|
||||||
|
Uses resolvers from /etc/resolv.conf if unset.
|
||||||
|
|
||||||
::: {.note}
|
::: {.note}
|
||||||
The configured DNS resolver must validate DNSSEC signatures.
|
The configured DNS resolver must validate DNSSEC signatures.
|
||||||
|
|||||||
@@ -7,13 +7,13 @@
|
|||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "postfix-tlspol";
|
pname = "postfix-tlspol";
|
||||||
version = "1.8.15";
|
version = "1.8.16";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Zuplu";
|
owner = "Zuplu";
|
||||||
repo = "postfix-tlspol";
|
repo = "postfix-tlspol";
|
||||||
tag = "v${version}";
|
tag = "v${version}";
|
||||||
hash = "sha256-DqFBXU9b6TOujG464Ww4iAA04NA5j0z9N00F7mbV92Q=";
|
hash = "sha256-Yndu5QpPxAVbkatJDa1yqkEfnJr5M5lLImtMKvt9juQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = null;
|
vendorHash = null;
|
||||||
|
|||||||
Reference in New Issue
Block a user