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.
This commit is contained in:
tilpner
2019-08-19 11:58:27 +02:00
parent 4835f65e95
commit 0281599ad2
8 changed files with 17 additions and 11 deletions
+1 -1
View File
@@ -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 ];
};
}