summary refs log tree commit diff
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2014-12-20 21:53:19 +0100
committerPascal Wittmann <mail@pascal-wittmann.de>2014-12-20 21:54:22 +0100
commitf55545c0c9256f61b7e1bb952da59770da0fe392 (patch)
treefe24e6717d0d5e388de208424063b937147c2b06
parentb676be70fc516fef3c8408187839ce7e08b8a36e (diff)
downloadnixpkgs-f55545c0c9256f61b7e1bb952da59770da0fe392.tar
nixpkgs-f55545c0c9256f61b7e1bb952da59770da0fe392.tar.gz
nixpkgs-f55545c0c9256f61b7e1bb952da59770da0fe392.tar.bz2
nixpkgs-f55545c0c9256f61b7e1bb952da59770da0fe392.tar.lz
nixpkgs-f55545c0c9256f61b7e1bb952da59770da0fe392.tar.xz
nixpkgs-f55545c0c9256f61b7e1bb952da59770da0fe392.tar.zst
nixpkgs-f55545c0c9256f61b7e1bb952da59770da0fe392.zip
fix maintainer information
s/maintainer/maintainers
-rw-r--r--pkgs/applications/editors/bluefish/default.nix2
-rw-r--r--pkgs/applications/graphics/yed/default.nix2
-rw-r--r--pkgs/os-specific/linux/macchanger/default.nix2
-rw-r--r--pkgs/tools/X11/primus/default.nix2
-rw-r--r--pkgs/tools/networking/openvpn/update-resolv-conf.nix2
5 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/editors/bluefish/default.nix b/pkgs/applications/editors/bluefish/default.nix
index 4e569fc68a5..71b2ccb6fb8 100644
--- a/pkgs/applications/editors/bluefish/default.nix
+++ b/pkgs/applications/editors/bluefish/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
     description = "A powerful editor targeted towards programmers and webdevelopers";
     homepage = http://bluefish.openoffice.nl/;
     license = licenses.gpl3Plus;
-    maintainer = [maintainers.vbgl];
+    maintainers = [maintainers.vbgl];
     platforms = platforms.all;
   };
 }
diff --git a/pkgs/applications/graphics/yed/default.nix b/pkgs/applications/graphics/yed/default.nix
index 2929513952e..4299d49ae65 100644
--- a/pkgs/applications/graphics/yed/default.nix
+++ b/pkgs/applications/graphics/yed/default.nix
@@ -24,6 +24,6 @@ stdenv.mkDerivation rec {
     homepage = http://www.yworks.com/en/products/yfiles/yed/;
     description = "A powerful desktop application that can be used to quickly and effectively generate high-quality diagrams";
     platforms = jre.meta.platforms;
-    maintainer = with maintainers; [ abbradar ];
+    maintainers = with maintainers; [ abbradar ];
   };
 }
diff --git a/pkgs/os-specific/linux/macchanger/default.nix b/pkgs/os-specific/linux/macchanger/default.nix
index 1bbad958bfd..1f046de40ed 100644
--- a/pkgs/os-specific/linux/macchanger/default.nix
+++ b/pkgs/os-specific/linux/macchanger/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "A utility for viewing/manipulating the MAC address of network interfaces";
-    maintainer = with stdenv.lib.maintainers; [ joachifm ];
+    maintainers = with stdenv.lib.maintainers; [ joachifm ];
     license = with stdenv.lib.licenses; gpl2Plus;
     homepage = "https://www.gnu.org/software/macchanger";
     platform = with stdenv.lib.platforms; linux;
diff --git a/pkgs/tools/X11/primus/default.nix b/pkgs/tools/X11/primus/default.nix
index f457d25fe1b..684713bebb1 100644
--- a/pkgs/tools/X11/primus/default.nix
+++ b/pkgs/tools/X11/primus/default.nix
@@ -35,6 +35,6 @@ stdenv.mkDerivation {
   meta = {
     homepage = https://github.com/amonakov/primus;
     description = "Faster OpenGL offloading for Bumblebee";
-    maintainer = maintainers.coconnor;
+    maintainers = maintainers.coconnor;
   };
 }
diff --git a/pkgs/tools/networking/openvpn/update-resolv-conf.nix b/pkgs/tools/networking/openvpn/update-resolv-conf.nix
index 37d38555e61..3afa17b0a82 100644
--- a/pkgs/tools/networking/openvpn/update-resolv-conf.nix
+++ b/pkgs/tools/networking/openvpn/update-resolv-conf.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Script to update your /etc/resolv.conf with DNS settings that come from the received push dhcp-options";
     homepage = https://github.com/masterkorp/openvpn-update-resolv-conf/;
-    maintainer = maintainers.abbradar;
+    maintainers = maintainers.abbradar;
     license = licenses.gpl2;
     platforms = platforms.unix;
   };