base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / ge / gen6dns / package.nix
blob92d33d55da98b0633f2d238a6e5760457a8c3025
1 { lib, stdenv, fetchurl, installShellFiles }:
3 stdenv.mkDerivation rec {
4   pname = "gen6dns";
5   version = "1.3";
7   src = fetchurl {
8     url = "https://www.hznet.de/tools/gen6dns-${version}.tar.gz";
9     hash = "sha256-MhYfgzbGPmrhPx89EpObrEkxaII7uz4TbWXeEGF7Xws=";
10   };
12   nativeBuildInputs = [ installShellFiles ];
14   preInstall = ''
15     mkdir -p $out/bin
16   '';
18   postInstall = ''
19     installManPage gen6dns.1
20   '';
22   configureFlags = lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
23     "ac_cv_func_malloc_0_nonnull=yes"
24   ];
26   makeFlags = [ "INSTALL_DIR=$(out)/bin" ];
28   meta = with lib; {
29     description = "Tool to generate static DNS records (AAAA and PTR) for hosts using Stateless Address Autoconfig (SLAAC)";
30     homepage = "https://www.hznet.de/tools.html#gen6dns";
31     license = licenses.bsd3;
32     maintainers = with maintainers; [ majiir ];
33     platforms = platforms.unix;
34   };