2020-09-16 20:27:22 +00:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule }:
|
2020-03-24 12:46:57 +00:00
|
|
|
|
2020-09-07 19:20:00 +00:00
|
|
|
buildGoModule rec {
|
2020-03-24 10:11:15 +00:00
|
|
|
pname = "dnscontrol";
|
2023-04-18 16:04:56 +00:00
|
|
|
version = "3.31.1";
|
2020-03-24 10:11:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "StackExchange";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-04-18 16:04:56 +00:00
|
|
|
sha256 = "sha256-T8fErChbQbarvE3/Zds1482m1hfD9Qa3esYvqjzNN3c=";
|
2020-03-24 10:11:15 +00:00
|
|
|
};
|
|
|
|
|
2023-04-17 09:58:56 +00:00
|
|
|
vendorHash = "sha256-BE/UnJw5elHYmyB+quN89ZkrlMcTjaVN0T2+h8cpPS8=";
|
2020-09-16 20:27:22 +00:00
|
|
|
|
2021-08-26 06:45:51 +00:00
|
|
|
ldflags = [ "-s" "-w" ];
|
2021-02-14 07:56:15 +00:00
|
|
|
|
2022-06-20 15:06:40 +00:00
|
|
|
preCheck = ''
|
|
|
|
# requires network
|
|
|
|
rm pkg/spflib/flatten_test.go pkg/spflib/parse_test.go
|
|
|
|
'';
|
|
|
|
|
2020-09-16 20:27:22 +00:00
|
|
|
meta = with lib; {
|
2020-03-24 10:11:15 +00:00
|
|
|
description = "Synchronize your DNS to multiple providers from a simple DSL";
|
|
|
|
homepage = "https://stackexchange.github.io/dnscontrol/";
|
|
|
|
license = licenses.mit;
|
2020-09-16 20:27:38 +00:00
|
|
|
maintainers = with maintainers; [ mmahut SuperSandro2000 ];
|
2020-03-24 10:11:15 +00:00
|
|
|
};
|
|
|
|
}
|