2021-08-30 11:33:21 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, getopt
|
|
|
|
, ip2location-c
|
|
|
|
, openssl
|
|
|
|
, perl
|
|
|
|
, libmaxminddb ? null
|
|
|
|
, geolite-legacy ? null
|
|
|
|
}:
|
2015-01-11 14:28:57 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "ipv6calc";
|
2022-12-06 05:36:25 +00:00
|
|
|
version = "4.0.2";
|
2015-01-11 14:28:57 +00:00
|
|
|
|
2021-08-30 11:33:21 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pbiering";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-12-06 05:36:25 +00:00
|
|
|
sha256 = "sha256-p/er/Ehyu7PqmikMIKPQBQ0/F81d8iiKdmLXLz+8pus=";
|
2015-01-11 14:28:57 +00:00
|
|
|
};
|
|
|
|
|
2021-08-30 11:33:21 +00:00
|
|
|
buildInputs = [
|
|
|
|
libmaxminddb
|
|
|
|
geolite-legacy
|
|
|
|
getopt
|
|
|
|
ip2location-c
|
|
|
|
openssl
|
|
|
|
perl
|
|
|
|
];
|
2015-01-11 14:28:57 +00:00
|
|
|
|
2019-10-22 14:46:38 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs *.sh */*.sh
|
2015-01-11 14:28:57 +00:00
|
|
|
for i in {,databases/}lib/Makefile.in; do
|
2019-10-22 14:46:38 +00:00
|
|
|
substituteInPlace $i --replace "/sbin/ldconfig" "ldconfig"
|
2015-01-11 14:28:57 +00:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2015-07-22 16:15:16 +00:00
|
|
|
configureFlags = [
|
2019-10-22 14:46:38 +00:00
|
|
|
"--prefix=${placeholder "out"}"
|
|
|
|
"--libdir=${placeholder "out"}/lib"
|
2015-07-22 16:15:16 +00:00
|
|
|
"--disable-bundled-getopt"
|
|
|
|
"--disable-bundled-md5"
|
|
|
|
"--disable-dynamic-load"
|
|
|
|
"--enable-shared"
|
2022-10-06 16:38:53 +00:00
|
|
|
] ++ lib.optionals (libmaxminddb != null) [
|
2021-08-30 11:33:21 +00:00
|
|
|
"--enable-mmdb"
|
2022-10-06 16:38:53 +00:00
|
|
|
] ++ lib.optionals (geolite-legacy != null) [
|
2021-08-30 11:33:21 +00:00
|
|
|
"--with-geoip-db=${geolite-legacy}/share/GeoIP"
|
2022-10-06 16:38:53 +00:00
|
|
|
] ++ lib.optionals (ip2location-c != null) [
|
2021-08-30 11:33:21 +00:00
|
|
|
"--enable-ip2location"
|
|
|
|
];
|
2015-01-11 14:28:57 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-01-11 14:28:57 +00:00
|
|
|
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.
|
|
|
|
'';
|
2019-10-22 14:46:38 +00:00
|
|
|
homepage = "http://www.deepspace6.net/projects/ipv6calc.html";
|
2021-08-30 11:33:21 +00:00
|
|
|
license = licenses.gpl2Only;
|
|
|
|
maintainers = with maintainers; [ ];
|
2015-07-22 16:14:48 +00:00
|
|
|
platforms = platforms.linux;
|
2015-01-11 14:28:57 +00:00
|
|
|
};
|
|
|
|
}
|