fping: add license

+4 -3
+4 -3
pkgs/tools/networking/fping/default.nix
··· 10 10 11 11 configureFlags = [ "--enable-ipv6" "--enable-ipv4" ]; 12 12 13 - meta = { 13 + meta = with stdenv.lib; { 14 14 homepage = http://fping.org/; 15 15 description = "Send ICMP echo probes to network hosts"; 16 - maintainers = with stdenv.lib.maintainers; [ the-kenny ]; 17 - platforms = with stdenv.lib.platforms; all; 16 + maintainers = with maintainers; [ the-kenny ]; 17 + license = licenses.bsd0; 18 + platforms = platforms.all; 18 19 }; 19 20 }