nixpkgs/pkgs/by-name/go/godns/package.nix

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

40 lines
973 B
Nix
Raw Normal View History

2023-03-03 12:08:06 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, nix-update-script
}:
2021-10-07 03:05:05 +00:00
buildGoModule rec {
pname = "godns";
2024-02-06 16:51:20 +00:00
version = "3.0.7";
2021-10-07 03:05:05 +00:00
src = fetchFromGitHub {
owner = "TimothyYe";
repo = "godns";
2023-03-03 12:08:06 +00:00
rev = "refs/tags/v${version}";
2024-02-06 16:51:20 +00:00
hash = "sha256-7zgvrEVt8xg54NijcqnXoZcXetzOu9h3Ucw7w03YagU=";
2021-10-07 03:05:05 +00:00
};
2024-02-06 16:51:20 +00:00
vendorHash = "sha256-veDrGB6gjUa8G/UyKzEgH2ItGGEPlXDePahq2XP2nAo=";
2021-10-07 03:05:05 +00:00
# Some tests require internet access, broken in sandbox
doCheck = false;
2023-03-03 12:08:06 +00:00
ldflags = [
"-s"
"-w"
"-X main.Version=${version}"
];
2021-10-07 03:05:05 +00:00
passthru.updateScript = nix-update-script { };
2022-05-11 04:24:27 +00:00
2021-10-07 03:05:05 +00: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";
2023-03-03 12:06:34 +00:00
changelog = "https://github.com/TimothyYe/godns/releases/tag/v${version}";
2021-10-07 03:05:05 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ yinfeng ];
2024-02-11 02:19:15 +00:00
mainProgram = "godns";
2021-10-07 03:05:05 +00:00
};
}