about summary refs log tree commit diff
path: root/pkgs/servers/trezord
diff options
context:
space:
mode:
authortilpner <till@hoeppner.ws>2019-08-18 21:16:19 +0200
committertilpner <till@hoeppner.ws>2019-08-19 11:58:27 +0200
commit0281599ad26471b328fe98c3f8d202d97a3f9544 (patch)
treedf7dad83120b3001d487a1158c93b339c764a1b1 /pkgs/servers/trezord
parent4835f65e9507bf4ba2defee4d8f1a6077b621960 (diff)
downloadnixlib-0281599ad26471b328fe98c3f8d202d97a3f9544.tar
nixlib-0281599ad26471b328fe98c3f8d202d97a3f9544.tar.gz
nixlib-0281599ad26471b328fe98c3f8d202d97a3f9544.tar.bz2
nixlib-0281599ad26471b328fe98c3f8d202d97a3f9544.tar.lz
nixlib-0281599ad26471b328fe98c3f8d202d97a3f9544.tar.xz
nixlib-0281599ad26471b328fe98c3f8d202d97a3f9544.tar.zst
nixlib-0281599ad26471b328fe98c3f8d202d97a3f9544.zip
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.
Diffstat (limited to 'pkgs/servers/trezord')
-rw-r--r--pkgs/servers/trezord/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/servers/trezord/default.nix b/pkgs/servers/trezord/default.nix
index fcea0f398e4e..48cf589e55d1 100644
--- a/pkgs/servers/trezord/default.nix
+++ b/pkgs/servers/trezord/default.nix
@@ -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;
   };
 }