summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-12-06 18:15:20 +0100
committerNaïm Favier <n@monade.li>2023-01-01 14:10:42 +0100
commit2c83122c1877b20728c8ae97faddbf2166f105cb (patch)
tree0a3e27d4852be242b7e1e5161491fbdd1f998184 /pkgs
parent94747ae8369bbc86984166d6ef7542b6371a015e (diff)
downloadnixpkgs-2c83122c1877b20728c8ae97faddbf2166f105cb.tar
nixpkgs-2c83122c1877b20728c8ae97faddbf2166f105cb.tar.gz
nixpkgs-2c83122c1877b20728c8ae97faddbf2166f105cb.tar.bz2
nixpkgs-2c83122c1877b20728c8ae97faddbf2166f105cb.tar.lz
nixpkgs-2c83122c1877b20728c8ae97faddbf2166f105cb.tar.xz
nixpkgs-2c83122c1877b20728c8ae97faddbf2166f105cb.tar.zst
nixpkgs-2c83122c1877b20728c8ae97faddbf2166f105cb.zip
treewide: fix broken `meta` attributes
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/keepass-plugins/otpkeyprov/default.nix2
-rw-r--r--pkgs/games/quake3/quake3e/default.nix2
-rw-r--r--pkgs/os-specific/linux/kernel/linux-rpi.nix4
-rw-r--r--pkgs/tools/security/onlykey-agent/default.nix2
4 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/misc/keepass-plugins/otpkeyprov/default.nix b/pkgs/applications/misc/keepass-plugins/otpkeyprov/default.nix
index 780de142c5f..abed55d9159 100644
--- a/pkgs/applications/misc/keepass-plugins/otpkeyprov/default.nix
+++ b/pkgs/applications/misc/keepass-plugins/otpkeyprov/default.nix
@@ -17,7 +17,7 @@ let
       homepage    = "https://keepass.info/plugins.html#otpkeyprov";
       platforms   = with lib.platforms; linux;
       license     = lib.licenses.gpl2;
-      maintainers = [ lib.maintainers.ente ];
+      maintainers = [ lib.maintainers.Enteee ];
     };
 
     pluginFilename = "OtpKeyProv.plgx";
diff --git a/pkgs/games/quake3/quake3e/default.nix b/pkgs/games/quake3/quake3e/default.nix
index 5303d679be1..0c57c97bbe9 100644
--- a/pkgs/games/quake3/quake3e/default.nix
+++ b/pkgs/games/quake3/quake3e/default.nix
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
     license = licenses.gpl2;
     platforms = platforms.linux;
     maintainers = with maintainers; [ pmiddend ];
-    badPlatforms = [ platforms.aarch64 ];
+    badPlatforms = platforms.aarch64;
     # never built on aarch64-linux since first introduction in nixpkgs
     broken = stdenv.isLinux && stdenv.isAarch64;
   };
diff --git a/pkgs/os-specific/linux/kernel/linux-rpi.nix b/pkgs/os-specific/linux/kernel/linux-rpi.nix
index ef742be0de8..cd0db1f1eff 100644
--- a/pkgs/os-specific/linux/kernel/linux-rpi.nix
+++ b/pkgs/os-specific/linux/kernel/linux-rpi.nix
@@ -41,10 +41,10 @@ lib.overrideDerivation (buildLinux (args // {
   '';
 
   extraMeta = if (rpiVersion < 3) then {
-    platforms = with lib.platforms; [ arm ];
+    platforms = with lib.platforms; arm;
     hydraPlatforms = [];
   } else {
-    platforms = with lib.platforms; [ arm aarch64 ];
+    platforms = with lib.platforms; arm ++ aarch64;
     hydraPlatforms = [ "aarch64-linux" ];
   };
 } // (args.argsOverride or {}))) (oldAttrs: {
diff --git a/pkgs/tools/security/onlykey-agent/default.nix b/pkgs/tools/security/onlykey-agent/default.nix
index 8be0971f964..86095191973 100644
--- a/pkgs/tools/security/onlykey-agent/default.nix
+++ b/pkgs/tools/security/onlykey-agent/default.nix
@@ -38,7 +38,7 @@ let
     meta = oa.meta // {
       description = "Using OnlyKey as hardware SSH and GPG agent";
       homepage = "https://github.com/trustcrypto/onlykey-agent/tree/ledger";
-      maintainers = with maintainers; [ kalbasit ];
+      maintainers = with lib.maintainers; [ kalbasit ];
     };
   });
 in