ipv6calc: 2.2.0 -> 3.2.0

This commit is contained in:
Fabian Affolter 2021-08-30 13:33:21 +02:00
parent d883522703
commit ed7e5ab31c

View file

@ -1,20 +1,33 @@
{ lib, stdenv, fetchurl, getopt, ip2location-c, openssl, perl
, libmaxminddb ? null, geolite-legacy ? null }:
{ lib
, stdenv
, fetchFromGitHub
, getopt
, ip2location-c
, openssl
, perl
, libmaxminddb ? null
, geolite-legacy ? null
}:
stdenv.mkDerivation rec {
pname = "ipv6calc";
version = "2.2.0";
version = "3.2.0";
src = fetchurl {
urls = [
"https://www.deepspace6.net/ftp/pub/ds6/sources/ipv6calc/${pname}-${version}.tar.gz"
"ftp://ftp.deepspace6.net/pub/ds6/sources/ipv6calc/${pname}-${version}.tar.gz"
"ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc/${pname}-${version}.tar.gz"
];
sha256 = "18acy0sy3n6jcjjwpxskysinw06czyayx1q4rqc7zc3ic4pkad8r";
src = fetchFromGitHub {
owner = "pbiering";
repo = pname;
rev = version;
sha256 = "1iis7qw803k9z52j30hn9sv8c3b0xyr9v7kb4fvcyiry1iaxcgfk";
};
buildInputs = [ libmaxminddb geolite-legacy getopt ip2location-c openssl perl ];
buildInputs = [
libmaxminddb
geolite-legacy
getopt
ip2location-c
openssl
perl
];
postPatch = ''
patchShebangs *.sh */*.sh
@ -30,9 +43,13 @@ stdenv.mkDerivation rec {
"--disable-bundled-md5"
"--disable-dynamic-load"
"--enable-shared"
] ++ lib.optional (libmaxminddb != null) "--enable-mmdb"
++ lib.optional (geolite-legacy != null) "--with-geoip-db=${geolite-legacy}/share/GeoIP"
++ lib.optional (ip2location-c != null) "--enable-ip2location";
] ++ lib.optional (libmaxminddb != null) [
"--enable-mmdb"
] ++ lib.optional (geolite-legacy != null) [
"--with-geoip-db=${geolite-legacy}/share/GeoIP"
] ++ lib.optional (ip2location-c != null) [
"--enable-ip2location"
];
enableParallelBuilding = true;
@ -47,7 +64,8 @@ stdenv.mkDerivation rec {
Now only one utiltity is needed to do a lot.
'';
homepage = "http://www.deepspace6.net/projects/ipv6calc.html";
license = licenses.gpl2;
license = licenses.gpl2Only;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
};
}