summaryrefslogtreecommitdiffstats
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)
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 4e569fc68a57..71b2ccb6fb8f 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 2929513952e1..4299d49ae65f 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 1bbad958bfd0..1f046de40edd 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 f457d25fe1b9..684713bebb1a 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 37d38555e618..3afa17b0a82c 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;
};