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

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

28 lines
775 B
Nix
Raw Normal View History

2021-10-07 05:05:05 +02:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "godns";
2022-04-28 14:57:03 +02:00
version = "2.7.5";
2021-10-07 05:05:05 +02:00
src = fetchFromGitHub {
owner = "TimothyYe";
repo = "godns";
rev = "v${version}";
2022-04-28 14:57:03 +02:00
sha256 = "sha256-YQNx0MwdThA2odJMq4rRNOtEe1ul6ICJNLSVr1aqCbA=";
2021-10-07 05:05:05 +02:00
};
2022-02-28 06:55:34 +01:00
vendorSha256 = "sha256-vhByl9oJjFIvOskAgLubZ5RCcitKd2jjxi8D9nU6850=";
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
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 ];
};
}