gen6dns: init at 1.3

This commit is contained in:
Majiir Paktu
2022-09-06 16:26:21 -04:00
parent 1034788cf2
commit 9c0908cb82
2 changed files with 27 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "gen6dns";
version = "1.3";
src = fetchurl {
url = "https://www.hznet.de/tools/gen6dns-${version}.tar.gz";
hash = "sha256-MhYfgzbGPmrhPx89EpObrEkxaII7uz4TbWXeEGF7Xws=";
};
preInstall = ''
mkdir -p $out/bin
'';
makeFlags = [ "INSTALL_DIR=$(out)/bin" ];
meta = with lib; {
description = "Tool to generate static DNS records (AAAA and PTR) for hosts using Stateless Address Autoconfig (SLAAC)";
homepage = "https://www.hznet.de/tools.html#gen6dns";
license = licenses.bsd3;
maintainers = with maintainers; [ majiir ];
platforms = platforms.unix;
};
}
+2
View File
@@ -1265,6 +1265,8 @@ with pkgs;
gam = callPackage ../tools/admin/gam { };
gen6dns = callPackage ../tools/networking/gen6dns { };
gfshare = callPackage ../tools/security/gfshare { };
gh-cal = callPackage ../tools/misc/gh-cal {