Files
nixpkgs/pkgs/by-name/ip/ipv6calc/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

77 lines
1.9 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
getopt,
ip2location-c,
openssl,
perl,
libmaxminddb ? null,
geolite-legacy ? null,
}:
stdenv.mkDerivation rec {
pname = "ipv6calc";
version = "4.4.0";
src = fetchFromGitHub {
owner = "pbiering";
repo = "ipv6calc";
rev = version;
sha256 = "sha256-+u+7XdW0bS3nE5djdy7I1/NHZdXU9QKukZAvTkWsCK0=";
};
buildInputs = [
libmaxminddb
geolite-legacy
getopt
ip2location-c
openssl
perl
];
postPatch = ''
patchShebangs *.sh */*.sh
for i in {,databases/}lib/Makefile.in; do
substituteInPlace $i --replace "/sbin/ldconfig" "ldconfig"
done
'';
configureFlags = [
"--prefix=${placeholder "out"}"
"--libdir=${placeholder "out"}/lib"
"--datadir=${placeholder "out"}/share"
"--disable-bundled-getopt"
"--disable-bundled-md5"
"--disable-dynamic-load"
"--enable-shared"
]
++ lib.optionals (libmaxminddb != null) [
"--enable-mmdb"
]
++ lib.optionals (geolite-legacy != null) [
"--with-geoip-db=${geolite-legacy}/share/GeoIP"
]
++ lib.optionals (ip2location-c != null) [
"--enable-ip2location"
];
enableParallelBuilding = true;
meta = with lib; {
description = "Calculate/manipulate (not only) IPv6 addresses";
longDescription = ''
ipv6calc is a small utility to manipulate (not only) IPv6 addresses and
is able to do other tricky things. Intentions were convering a given
IPv6 address into compressed format, convering a given IPv6 address into
the same format like shown in /proc/net/if_inet6 and (because it was not
difficult) migrating the Perl program ip6_int into.
Now only one utiltity is needed to do a lot.
'';
homepage = "http://www.deepspace6.net/projects/ipv6calc.html";
license = licenses.gpl2Only;
maintainers = [ ];
platforms = platforms.linux;
};
}