Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release-cross.nix: add amjoseph as maintainer for powerpc64*, mips64* #181800

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,15 @@
githubId = 5149377;
name = "Amine Chikhaoui";
};
amjoseph = {
name = "Adam Megacz Joseph";
email = "adam@westernsemico.com";
github = "amjoseph-nixpkgs";
githubId = 54836058;
keys = [{
fingerprint = "AD25 6548 09B0 F2A5 D246 1AFF E702 47B6 4C13 EEBE";
}];
};
amorsillo = {
email = "andrew.morsillo@gmail.com";
github = "evelant";
Expand Down
9 changes: 6 additions & 3 deletions pkgs/top-level/release-cross.nix
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,12 @@ in
/* Cross-built bootstrap tools for every supported platform */
bootstrapTools = let
tools = import ../stdenv/linux/make-bootstrap-tools-cross.nix { system = "x86_64-linux"; };
maintainers = [ lib.maintainers.dezgeg ];
mkBootstrapToolsJob = drv:
mkBootstrapToolsJob = name: drv:
assert lib.elem drv.system supportedSystems;
let maintainers = with lib.maintainers;
[ dezgeg ]
++ lib.optionals (lib.strings.hasPrefix "mips64" (lib.lists.elemAt name 0)) [ amjoseph ]
++ lib.optionals (lib.strings.hasPrefix "powerpc64" (lib.lists.elemAt name 0)) [ amjoseph ]; in
hydraJob' (lib.addMetaAttrs { inherit maintainers; } drv);
in lib.mapAttrsRecursiveCond (as: !lib.isDerivation as) (name: mkBootstrapToolsJob) tools;
in lib.mapAttrsRecursiveCond (as: !lib.isDerivation as) mkBootstrapToolsJob tools;
}