treewide: fix broken meta
attributes
This commit is contained in:
parent
94747ae836
commit
2c83122c18
4 changed files with 5 additions and 5 deletions
|
@ -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";
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -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: {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue