nixpkgs/pkgs/tools/networking/gen6dns/default.nix

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

36 lines
918 B
Nix
Raw Normal View History

2022-09-08 04:20:00 +00:00
{ lib, stdenv, fetchurl, installShellFiles }:
2022-09-06 20:23:58 +00:00
stdenv.mkDerivation rec {
pname = "gen6dns";
version = "1.3";
src = fetchurl {
url = "https://www.hznet.de/tools/gen6dns-${version}.tar.gz";
hash = "sha256-MhYfgzbGPmrhPx89EpObrEkxaII7uz4TbWXeEGF7Xws=";
};
2022-09-08 04:20:00 +00:00
nativeBuildInputs = [ installShellFiles ];
2022-09-06 20:23:58 +00:00
preInstall = ''
mkdir -p $out/bin
'';
2022-09-08 04:20:00 +00:00
postInstall = ''
installManPage gen6dns.1
'';
2023-12-17 22:36:53 +00:00
configureFlags = lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
"ac_cv_func_malloc_0_nonnull=yes"
];
2022-09-06 20:23:58 +00:00
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;
};
}