summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-08-20 00:27:04 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-08-20 00:27:04 +0200
commit05290a6c019034063e34eb85dc7055d7a092efeb (patch)
tree5d5818b04fc8cdf86c035c3e13cf56ada334ac7d
parent49ee72b744770797978ea8325deb785cdcf816ed (diff)
downloadnixpkgs-05290a6c019034063e34eb85dc7055d7a092efeb.tar
nixpkgs-05290a6c019034063e34eb85dc7055d7a092efeb.tar.gz
nixpkgs-05290a6c019034063e34eb85dc7055d7a092efeb.tar.bz2
nixpkgs-05290a6c019034063e34eb85dc7055d7a092efeb.tar.lz
nixpkgs-05290a6c019034063e34eb85dc7055d7a092efeb.tar.xz
nixpkgs-05290a6c019034063e34eb85dc7055d7a092efeb.tar.zst
nixpkgs-05290a6c019034063e34eb85dc7055d7a092efeb.zip
fping: add license
-rw-r--r--pkgs/tools/networking/fping/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/networking/fping/default.nix b/pkgs/tools/networking/fping/default.nix
index 2b19c8e6a05..adcb59135ee 100644
--- a/pkgs/tools/networking/fping/default.nix
+++ b/pkgs/tools/networking/fping/default.nix
@@ -10,10 +10,11 @@ stdenv.mkDerivation rec {
 
   configureFlags = [ "--enable-ipv6" "--enable-ipv4" ];
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://fping.org/;
     description = "Send ICMP echo probes to network hosts";
-    maintainers = with stdenv.lib.maintainers; [ the-kenny ];
-    platforms = with stdenv.lib.platforms; all;
+    maintainers = with maintainers; [ the-kenny ];
+    license = licenses.bsd0;
+    platforms = platforms.all;
   };
 }