aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/ndppd
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-08-20 19:36:05 +0200
committerRobin Gloster <mail@glob.in>2019-08-20 19:36:05 +0200
commit4e60b0efae56cc8e1a8a606a5a89462c38aba305 (patch)
tree37854d4ce85949c9f06e1c18187aaf183ced9cab /pkgs/applications/networking/ndppd
parent03d34165bfe44ea6e1641303808112b7cb78d1ce (diff)
treewide: update globin's maintained drvs
Diffstat (limited to 'pkgs/applications/networking/ndppd')
-rw-r--r--pkgs/applications/networking/ndppd/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/applications/networking/ndppd/default.nix b/pkgs/applications/networking/ndppd/default.nix
index 44355c2c181d..6d7a8bd6c430 100644
--- a/pkgs/applications/networking/ndppd/default.nix
+++ b/pkgs/applications/networking/ndppd/default.nix
@@ -24,12 +24,11 @@ stdenv.mkDerivation rec {
cp ndppd.conf-dist $out/etc/ndppd.conf
'';
- meta = {
+ meta = with stdenv.lib; {
description = "A daemon that proxies NDP (Neighbor Discovery Protocol) messages between interfaces";
homepage = https://github.com/DanielAdolfsson/ndppd;
- license = stdenv.lib.licenses.gpl3;
-
- platforms = stdenv.lib.platforms.linux;
- maintainers = [ stdenv.lib.maintainers.fadenb ];
+ license = licenses.gpl3;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ fadenb globin ];
};
}