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

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

30 lines
844 B
Nix
Raw Normal View History

2022-05-11 06:24:27 +02:00
{ buildGoModule, fetchFromGitHub, lib, nix-update-script }:
2021-10-07 05:05:05 +02:00
buildGoModule rec {
pname = "godns";
2023-01-10 04:13:25 +01:00
version = "2.9.1";
2021-10-07 05:05:05 +02:00
src = fetchFromGitHub {
owner = "TimothyYe";
repo = "godns";
rev = "v${version}";
2023-01-10 04:13:25 +01:00
sha256 = "sha256-ZTp7MQTl1FbahmnStXFML4KeL736CXY5rE2gilP3txg=";
2021-10-07 05:05:05 +02:00
};
2022-07-06 09:06:38 +02:00
vendorSha256 = "sha256-PGqknRGtN0XRGPnAsWzQrlJZG5BzQIhlSysGefkxysE=";
2021-10-07 05:05:05 +02:00
# Some tests require internet access, broken in sandbox
doCheck = false;
2021-11-09 04:51:43 +01:00
ldflags = [ "-s" "-w" "-X main.Version=${version}" ];
2021-10-07 05:05:05 +02:00
passthru.updateScript = nix-update-script { };
2022-05-11 06:24:27 +02:00
2021-10-07 05:05:05 +02:00
meta = with lib; {
description = "A dynamic DNS client tool supports AliDNS, Cloudflare, Google Domains, DNSPod, HE.net & DuckDNS & DreamHost, etc";
homepage = "https://github.com/TimothyYe/godns";
license = licenses.asl20;
maintainers = with maintainers; [ yinfeng ];
};
}