forked from mirrors/nixpkgs
r53-ddns: init at 1.0.1
This commit is contained in:
parent
59b08b732a
commit
a1068d919a
22
pkgs/applications/networking/r53-ddns/default.nix
Normal file
22
pkgs/applications/networking/r53-ddns/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ buildGoModule, fetchFromGitHub, lib }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "r53-ddns";
|
||||||
|
version = "1.0.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "fleaz";
|
||||||
|
repo = "r53-ddns";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256:1pvd1karq1p81rkq2n7mh040n29f7wb8701ax6g2sqm1yz7gxd08";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256:1jhwds57gi548ahnh5m342csrs5rv9ysy7fqmfvg5w2s9slswq77";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
license = licenses.mit;
|
||||||
|
homepage = "https://github.com/fleaz/r53-ddns";
|
||||||
|
description = "A DIY DynDNS tool based on Route53";
|
||||||
|
maintainers = with maintainers; [ fleaz ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4114,6 +4114,8 @@ with pkgs;
|
||||||
|
|
||||||
psrecord = python3Packages.callPackage ../tools/misc/psrecord {};
|
psrecord = python3Packages.callPackage ../tools/misc/psrecord {};
|
||||||
|
|
||||||
|
r53-ddns = callPackage ../applications/networking/r53-ddns { };
|
||||||
|
|
||||||
rare = python3Packages.callPackage ../games/rare { };
|
rare = python3Packages.callPackage ../games/rare { };
|
||||||
|
|
||||||
reg = callPackage ../tools/virtualization/reg { };
|
reg = callPackage ../tools/virtualization/reg { };
|
||||||
|
|
Loading…
Reference in a new issue