nixpkgs/pkgs/tools/networking/ipv6calc/default.nix
2015-07-23 03:12:22 +02:00

54 lines
1.7 KiB
Nix

{ stdenv, fetchurl, geoip, geolite-legacy, getopt, openssl, perl }:
let version = "0.99.0"; in
stdenv.mkDerivation rec {
name = "ipv6calc-${version}";
src = fetchurl {
url = "ftp://ftp.deepspace6.net/pub/ds6/sources/ipv6calc/${name}.tar.gz";
sha256 = "1dgx6gji9dyz77jssk2ax5r0ycq4jcsks71bhvcpb79k02wkaxgw";
};
buildInputs = [ geoip geolite-legacy getopt openssl ];
nativeBuildInputs = [ perl ];
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
'';
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"
];
enableParallelBuilding = true;
meta = with stdenv.lib; {
inherit version;
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.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
}