tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ipv6calc: 0.98.0 -> 0.99.0
Tobias Geerinckx-Rice
10 years ago
0c00290f
c805663b
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
ipv6calc
default.nix
+4
-3
pkgs/tools/networking/ipv6calc/default.nix
···
1
1
{ stdenv, fetchurl, geoip, geolite-legacy, getopt, openssl, perl }:
2
2
3
3
+
let version = "0.99.0"; in
3
4
stdenv.mkDerivation rec {
4
4
-
version = "0.98.0";
5
5
name = "ipv6calc-${version}";
6
6
7
7
src = fetchurl {
8
8
url = "ftp://ftp.deepspace6.net/pub/ds6/sources/ipv6calc/${name}.tar.gz";
9
9
-
sha256 = "02r0r4lgz10ivbmgdzivj7dvry1aad75ik9vyy6irjvngjkzg5r3";
9
9
+
sha256 = "1dgx6gji9dyz77jssk2ax5r0ycq4jcsks71bhvcpb79k02wkaxgw";
10
10
};
11
11
12
12
buildInputs = [ geoip geolite-legacy getopt openssl ];
···
33
33
enableParallelBuilding = true;
34
34
35
35
meta = with stdenv.lib; {
36
36
+
inherit version;
36
37
description = "Calculate/manipulate (not only) IPv6 addresses";
37
38
longDescription = ''
38
39
ipv6calc is a small utility to manipulate (not only) IPv6 addresses and
···
44
45
'';
45
46
homepage = http://www.deepspace6.net/projects/ipv6calc.html;
46
47
license = licenses.gpl2;
47
47
-
platforms = with platforms; linux;
48
48
+
platforms = platforms.linux;
48
49
maintainers = with maintainers; [ nckx ];
49
50
};
50
51
}