8 stdenv.mkDerivation rec {
13 url = "https://www.hznet.de/tools/gen6dns-${version}.tar.gz";
14 hash = "sha256-MhYfgzbGPmrhPx89EpObrEkxaII7uz4TbWXeEGF7Xws=";
17 nativeBuildInputs = [ installShellFiles ];
24 installManPage gen6dns.1
27 configureFlags = lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
28 "ac_cv_func_malloc_0_nonnull=yes"
31 makeFlags = [ "INSTALL_DIR=$(out)/bin" ];
34 description = "Tool to generate static DNS records (AAAA and PTR) for hosts using Stateless Address Autoconfig (SLAAC)";
35 homepage = "https://www.hznet.de/tools.html#gen6dns";
36 license = licenses.bsd3;
37 maintainers = with maintainers; [ majiir ];
38 platforms = platforms.unix;