summary refs log tree commit diff
path: root/pkgs/servers/dns
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/servers/dns
parent03d34165bfe44ea6e1641303808112b7cb78d1ce (diff)
downloadnixpkgs-4e60b0efae56cc8e1a8a606a5a89462c38aba305.tar
nixpkgs-4e60b0efae56cc8e1a8a606a5a89462c38aba305.tar.gz
nixpkgs-4e60b0efae56cc8e1a8a606a5a89462c38aba305.tar.bz2
nixpkgs-4e60b0efae56cc8e1a8a606a5a89462c38aba305.tar.lz
nixpkgs-4e60b0efae56cc8e1a8a606a5a89462c38aba305.tar.xz
nixpkgs-4e60b0efae56cc8e1a8a606a5a89462c38aba305.tar.zst
nixpkgs-4e60b0efae56cc8e1a8a606a5a89462c38aba305.zip
treewide: update globin's maintained drvs
Diffstat (limited to 'pkgs/servers/dns')
-rw-r--r--pkgs/servers/dns/bind/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix
index 74d0d1341d6..0b40b99cfc1 100644
--- a/pkgs/servers/dns/bind/default.nix
+++ b/pkgs/servers/dns/bind/default.nix
@@ -76,13 +76,13 @@ stdenv.mkDerivation rec {
 
   doCheck = false; # requires root and the net
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://www.isc.org/downloads/bind/;
     description = "Domain name server";
-    license = stdenv.lib.licenses.mpl20;
+    license = licenses.mpl20;
 
-    maintainers = with stdenv.lib.maintainers; [peti];
-    platforms = with stdenv.lib.platforms; unix;
+    maintainers = with maintainers; [ peti globin ];
+    platforms = platforms.unix;
 
     outputsToInstall = [ "out" "dnsutils" "host" ];
   };