treewide: fix broken meta attributes

This commit is contained in:
Naïm Favier 2022-12-06 18:15:20 +01:00
parent 94747ae836
commit 2c83122c18
No known key found for this signature in database
GPG key ID: 95AFCE8211908325
4 changed files with 5 additions and 5 deletions

View file

@ -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";

View file

@ -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;
};

View file

@ -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: {

View file

@ -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