about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/gen6dns/default.nix
blob: 6f020c2a663651d16f536eaa231df9b7f71f5cc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib, stdenv, fetchurl, installShellFiles }:

stdenv.mkDerivation rec {
  pname = "gen6dns";
  version = "1.3";

  src = fetchurl {
    url = "https://www.hznet.de/tools/gen6dns-${version}.tar.gz";
    hash = "sha256-MhYfgzbGPmrhPx89EpObrEkxaII7uz4TbWXeEGF7Xws=";
  };

  nativeBuildInputs = [ installShellFiles ];

  preInstall = ''
    mkdir -p $out/bin
  '';

  postInstall = ''
    installManPage gen6dns.1
  '';

  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;
  };
}