2015-09-07 03:33:58 +02:00
|
|
|
{ stdenv, fetchurl, getopt, ip2location-c, openssl, perl
|
2018-07-21 02:44:44 +02:00
|
|
|
, geoip ? null, geolite-legacy ? null }:
|
2015-01-11 15:28:57 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ipv6calc-${version}";
|
2018-10-16 05:39:48 +02:00
|
|
|
version = "1.1.0";
|
2015-01-11 15:28:57 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-23 02:04:08 +01:00
|
|
|
url = "ftp://ftp.deepspace6.net/pub/ds6/sources/ipv6calc/${name}.tar.gz";
|
2018-10-16 05:39:48 +02:00
|
|
|
sha256 = "1q74ikg780v5hllbq08wdfvxr2lf0fc7i41hclqrh1ajc6dqybbq";
|
2015-01-11 15:28:57 +01:00
|
|
|
};
|
|
|
|
|
2015-09-07 03:33:58 +02:00
|
|
|
buildInputs = [ geoip geolite-legacy getopt ip2location-c openssl ];
|
2015-06-17 19:36:06 +02:00
|
|
|
nativeBuildInputs = [ perl ];
|
2015-01-11 15:28:57 +01:00
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
for i in {,databases/}lib/Makefile.in; do
|
|
|
|
substituteInPlace $i --replace /sbin/ldconfig true
|
|
|
|
done
|
|
|
|
for i in {{,databases/}lib,man}/Makefile.in; do
|
|
|
|
substituteInPlace $i --replace DESTDIR out
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2015-07-22 18:15:16 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-bundled-getopt"
|
|
|
|
"--disable-bundled-md5"
|
|
|
|
"--disable-dynamic-load"
|
|
|
|
"--enable-shared"
|
|
|
|
] ++ stdenv.lib.optional (geoip != null ) [
|
|
|
|
"--enable-geoip"
|
|
|
|
] ++ stdenv.lib.optional (geolite-legacy != null) [
|
|
|
|
"--with-geoip-db=${geolite-legacy}/share/GeoIP"
|
2015-09-07 03:33:58 +02:00
|
|
|
] ++ stdenv.lib.optional (ip2location-c != null ) [
|
|
|
|
"--enable-ip2location"
|
2015-07-22 18:15:16 +02:00
|
|
|
];
|
2015-01-11 15:28:57 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.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;
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl2;
|
2015-07-22 18:14:48 +02:00
|
|
|
platforms = platforms.linux;
|
2015-01-11 15:28:57 +01:00
|
|
|
};
|
|
|
|
}
|