571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
36 lines
918 B
Nix
36 lines
918 B
Nix
{ 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
|
|
'';
|
|
|
|
configureFlags = lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
|
|
"ac_cv_func_malloc_0_nonnull=yes"
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|