summary refs log tree commit diff
path: root/pkgs/tools/networking/ipv6calc
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-01-11 15:28:57 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-01-11 15:28:57 +0100
commit0761330f6469ee7c20d1f7cf6263ecec169dd6ba (patch)
tree50ecfc00ec4a775a79d38a1e6b78599908a2531a /pkgs/tools/networking/ipv6calc
parent85dc90565f74aed870cbf49ccb4b3e643032483b (diff)
downloadnixlib-0761330f6469ee7c20d1f7cf6263ecec169dd6ba.tar
nixlib-0761330f6469ee7c20d1f7cf6263ecec169dd6ba.tar.gz
nixlib-0761330f6469ee7c20d1f7cf6263ecec169dd6ba.tar.bz2
nixlib-0761330f6469ee7c20d1f7cf6263ecec169dd6ba.tar.lz
nixlib-0761330f6469ee7c20d1f7cf6263ecec169dd6ba.tar.xz
nixlib-0761330f6469ee7c20d1f7cf6263ecec169dd6ba.tar.zst
nixlib-0761330f6469ee7c20d1f7cf6263ecec169dd6ba.zip
Add ipv6calc: calculate/manipulate (not only) IPv6 addresses
Diffstat (limited to 'pkgs/tools/networking/ipv6calc')
-rw-r--r--pkgs/tools/networking/ipv6calc/default.nix49
1 files changed, 49 insertions, 0 deletions
diff --git a/pkgs/tools/networking/ipv6calc/default.nix b/pkgs/tools/networking/ipv6calc/default.nix
new file mode 100644
index 000000000000..39f7b3052e0e
--- /dev/null
+++ b/pkgs/tools/networking/ipv6calc/default.nix
@@ -0,0 +1,49 @@
+{ stdenv, fetchurl, geoip, getopt, openssl, perl }:
+
+stdenv.mkDerivation rec {
+  version = "0.97.4";
+  name = "ipv6calc-${version}";
+
+  src = fetchurl {
+    url = "ftp://ftp.bieringer.de/pub/linux/IPv6/ipv6calc/${name}.tar.gz";
+    sha256 = "0ffzqflvm6pfzgjsr3mzq7pwvshhl3h92rg4waza7zyvby4rwb7d";
+  };
+
+  buildInputs = [ geoip getopt openssl 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
+    --enable-geoip
+    --with-geoip-db=${geoip}/share/GeoIP
+  '';
+
+  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;
+    license = with licenses; gpl2;
+    platforms = with platforms; linux;
+    maintainers = with maintainers; [ nckx ];
+  };
+}