about 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-07-22 18:14:48 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-07-23 03:12:22 +0200
commit0c00290fbb0306c2e9704dce3fe47a70627ad45f (patch)
tree87140267ad17e7f4834f562dbe769b6c4a12e012 /pkgs/tools/networking/ipv6calc
parentc805663bf41244d2f5608ae385a2426d798909c0 (diff)
downloadnixlib-0c00290fbb0306c2e9704dce3fe47a70627ad45f.tar
nixlib-0c00290fbb0306c2e9704dce3fe47a70627ad45f.tar.gz
nixlib-0c00290fbb0306c2e9704dce3fe47a70627ad45f.tar.bz2
nixlib-0c00290fbb0306c2e9704dce3fe47a70627ad45f.tar.lz
nixlib-0c00290fbb0306c2e9704dce3fe47a70627ad45f.tar.xz
nixlib-0c00290fbb0306c2e9704dce3fe47a70627ad45f.tar.zst
nixlib-0c00290fbb0306c2e9704dce3fe47a70627ad45f.zip
ipv6calc: 0.98.0 -> 0.99.0
Diffstat (limited to 'pkgs/tools/networking/ipv6calc')
-rw-r--r--pkgs/tools/networking/ipv6calc/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/networking/ipv6calc/default.nix b/pkgs/tools/networking/ipv6calc/default.nix
index 102d06882349..f3dadbd72438 100644
--- a/pkgs/tools/networking/ipv6calc/default.nix
+++ b/pkgs/tools/networking/ipv6calc/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, geoip, geolite-legacy, getopt, openssl, perl }:
 
+let version = "0.99.0"; in
 stdenv.mkDerivation rec {
-  version = "0.98.0";
   name = "ipv6calc-${version}";
 
   src = fetchurl {
     url = "ftp://ftp.deepspace6.net/pub/ds6/sources/ipv6calc/${name}.tar.gz";
-    sha256 = "02r0r4lgz10ivbmgdzivj7dvry1aad75ik9vyy6irjvngjkzg5r3";
+    sha256 = "1dgx6gji9dyz77jssk2ax5r0ycq4jcsks71bhvcpb79k02wkaxgw";
   };
 
   buildInputs = [ geoip geolite-legacy getopt openssl ];
@@ -33,6 +33,7 @@ stdenv.mkDerivation rec {
   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
@@ -44,7 +45,7 @@ stdenv.mkDerivation rec {
     '';
     homepage = http://www.deepspace6.net/projects/ipv6calc.html;
     license = licenses.gpl2;
-    platforms = with platforms; linux;
+    platforms = platforms.linux;
     maintainers = with maintainers; [ nckx ];
   };
 }