tree-wide: fix malformed meta.maintainers

These packages stood out while processing packages.json.gz,
where the maintainer field of some packages wasn't a list of sets,
but a nested list, or a string.
wip/yesman
tilpner 5 years ago
parent 4835f65e95
commit 0281599ad2
No known key found for this signature in database
GPG Key ID: E9192E216175A76D
  1. 6
      maintainers/maintainer-list.nix
  2. 2
      pkgs/development/libraries/at-spi2-atk/default.nix
  3. 2
      pkgs/development/libraries/at-spi2-core/default.nix
  4. 6
      pkgs/development/python-modules/shamir-mnemonic/default.nix
  5. 6
      pkgs/development/python-modules/trezor/default.nix
  6. 2
      pkgs/misc/acpilight/default.nix
  7. 2
      pkgs/servers/sickbeard/sickrage.nix
  8. 2
      pkgs/servers/trezord/default.nix

@ -5907,6 +5907,12 @@
githubId = 231788;
name = "Stephen Weinberg";
};
sterfield = {
email = "sterfield@gmail.com";
github = "sterfield";
githubId = 5747061;
name = "Guillaume Loetscher";
};
sternenseemann = {
email = "post@lukasepple.de";
github = "sternenseemann";

@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
description = "D-Bus bridge for Assistive Technology Service Provider Interface (AT-SPI) and Accessibility Toolkit (ATK)";
homepage = https://gitlab.gnome.org/GNOME/at-spi2-atk;
license = licenses.lgpl2Plus; # NOTE: 2018-06-06: Please check the license when upstream sorts-out licensing: https://gitlab.gnome.org/GNOME/at-spi2-atk/issues/2
maintainers = with maintainers; [ jtojnar gnome3.maintainers ];
maintainers = gnome3.maintainers;
platforms = platforms.unix;
};
}

@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
description = "Assistive Technology Service Provider Interface protocol definitions and daemon for D-Bus";
homepage = https://gitlab.gnome.org/GNOME/at-spi2-core;
license = licenses.lgpl2Plus; # NOTE: 2018-06-06: Please check the license when upstream sorts-out licensing: https://gitlab.gnome.org/GNOME/at-spi2-core/issues/2
maintainers = with maintainers; [ jtojnar gnome3.maintainers ];
maintainers = gnome3.maintainers;
platforms = platforms.unix;
};
}

@ -13,10 +13,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [ click colorama ];
meta = {
meta = with lib; {
description = "Reference implementation of SLIP-0039";
homepage = "https://github.com/trezor/python-shamir-mnemonic";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ "1000101" ];
license = licenses.mit;
maintainers = [ maintainers."1000101" ];
};
}

@ -40,10 +40,10 @@ buildPythonPackage rec {
runHook postCheck
'';
meta = {
meta = with lib; {
description = "Python library for communicating with TREZOR Bitcoin Hardware Wallet";
homepage = "https://github.com/trezor/trezor-firmware/tree/master/python";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ np prusnak mmahut "1000101" ];
license = licenses.gpl3;
maintainers = with maintainers; [ np prusnak mmahut maintainers."1000101" ];
};
}

@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
homepage = "https://gitlab.com/wavexx/acpilight";
description = "ACPI backlight control";
license = licenses.gpl3;
maintainers = with maintainers; [ "smakarov" ];
maintainers = with maintainers; [ smakarov ];
platforms = platforms.linux;
};
}

@ -29,6 +29,6 @@ python2.pkgs.buildPythonApplication rec {
longDescription = "It watches for new episodes of your favorite shows, and when they are posted it does its magic.";
license = licenses.gpl3;
homepage = https://sickrage.github.io;
maintainers = [ "sterfield@gmail.com" ];
maintainers = with maintainers; [ sterfield ];
};
}

@ -20,7 +20,7 @@ buildGoPackage rec {
description = "TREZOR Communication Daemon aka TREZOR Bridge";
homepage = "https://trezor.io";
license = licenses.lgpl3;
maintainers = with maintainers; [ canndrew jb55 "1000101" prusnak mmahut ];
maintainers = with maintainers; [ canndrew jb55 prusnak mmahut maintainers."1000101" ];
platforms = platforms.unix;
};
}

Loading…
Cancel
Save