ipv6calc: 0.98.0 -> 0.99.0

This commit is contained in:
Tobias Geerinckx-Rice 2015-07-22 18:14:48 +02:00
parent c805663bf4
commit 0c00290fbb

View File

@ -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 ];
};
}