treewide: fix broken `meta` attributes

+5 -5
+1 -1
pkgs/applications/misc/keepass-plugins/otpkeyprov/default.nix
··· 17 homepage = "https://keepass.info/plugins.html#otpkeyprov"; 18 platforms = with lib.platforms; linux; 19 license = lib.licenses.gpl2; 20 - maintainers = [ lib.maintainers.ente ]; 21 }; 22 23 pluginFilename = "OtpKeyProv.plgx";
··· 17 homepage = "https://keepass.info/plugins.html#otpkeyprov"; 18 platforms = with lib.platforms; linux; 19 license = lib.licenses.gpl2; 20 + maintainers = [ lib.maintainers.Enteee ]; 21 }; 22 23 pluginFilename = "OtpKeyProv.plgx";
+1 -1
pkgs/games/quake3/quake3e/default.nix
··· 47 license = licenses.gpl2; 48 platforms = platforms.linux; 49 maintainers = with maintainers; [ pmiddend ]; 50 - badPlatforms = [ platforms.aarch64 ]; 51 # never built on aarch64-linux since first introduction in nixpkgs 52 broken = stdenv.isLinux && stdenv.isAarch64; 53 };
··· 47 license = licenses.gpl2; 48 platforms = platforms.linux; 49 maintainers = with maintainers; [ pmiddend ]; 50 + badPlatforms = platforms.aarch64; 51 # never built on aarch64-linux since first introduction in nixpkgs 52 broken = stdenv.isLinux && stdenv.isAarch64; 53 };
+2 -2
pkgs/os-specific/linux/kernel/linux-rpi.nix
··· 41 ''; 42 43 extraMeta = if (rpiVersion < 3) then { 44 - platforms = with lib.platforms; [ arm ]; 45 hydraPlatforms = []; 46 } else { 47 - platforms = with lib.platforms; [ arm aarch64 ]; 48 hydraPlatforms = [ "aarch64-linux" ]; 49 }; 50 } // (args.argsOverride or {}))) (oldAttrs: {
··· 41 ''; 42 43 extraMeta = if (rpiVersion < 3) then { 44 + platforms = with lib.platforms; arm; 45 hydraPlatforms = []; 46 } else { 47 + platforms = with lib.platforms; arm ++ aarch64; 48 hydraPlatforms = [ "aarch64-linux" ]; 49 }; 50 } // (args.argsOverride or {}))) (oldAttrs: {
+1 -1
pkgs/tools/security/onlykey-agent/default.nix
··· 38 meta = oa.meta // { 39 description = "Using OnlyKey as hardware SSH and GPG agent"; 40 homepage = "https://github.com/trustcrypto/onlykey-agent/tree/ledger"; 41 - maintainers = with maintainers; [ kalbasit ]; 42 }; 43 }); 44 in
··· 38 meta = oa.meta // { 39 description = "Using OnlyKey as hardware SSH and GPG agent"; 40 homepage = "https://github.com/trustcrypto/onlykey-agent/tree/ledger"; 41 + maintainers = with lib.maintainers; [ kalbasit ]; 42 }; 43 }); 44 in