tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
fping: add license
Markus Kowalewski
7 years ago
05290a6c
49ee72b7
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
fping
default.nix
+4
-3
pkgs/tools/networking/fping/default.nix
···
10
10
11
11
configureFlags = [ "--enable-ipv6" "--enable-ipv4" ];
12
12
13
13
-
meta = {
13
13
+
meta = with stdenv.lib; {
14
14
homepage = http://fping.org/;
15
15
description = "Send ICMP echo probes to network hosts";
16
16
-
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
17
17
-
platforms = with stdenv.lib.platforms; all;
16
16
+
maintainers = with maintainers; [ the-kenny ];
17
17
+
license = licenses.bsd0;
18
18
+
platforms = platforms.all;
18
19
};
19
20
}