biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / networking / r53-ddns / default.nix
blob8db9ddacef726e42fd6b6d450c83f3a1fea61c9b
1 { buildGoModule, fetchFromGitHub, lib }:
3 buildGoModule rec {
4   pname = "r53-ddns";
5   version = "1.1.0";
7   src = fetchFromGitHub {
8     owner = "fleaz";
9     repo = "r53-ddns";
10     rev = "v${version}";
11     sha256 = "sha256-KJAPhSGaC3upWLfo2eeSD3Vit9Blmbol7s8y3f849N4=";
12   };
14   vendorHash = "sha256-KkyMd94cejWkgg/RJudy1lm/M3lsEJXFGqVTzGIX3qM=";
16   meta = with lib; {
17     license = licenses.mit;
18     homepage = "https://github.com/fleaz/r53-ddns";
19     description = "A DIY DynDNS tool based on Route53";
20     maintainers = with maintainers; [ fleaz ];
21     mainProgram = "r53-ddns";
22   };