release-cross: Cross compile from all 3 supported platforms

This commit is contained in:
John Ericson 2018-09-11 14:18:24 -04:00
parent ab6bbdd5cd
commit 22df9423cd

View File

@ -2,7 +2,7 @@
*/ */
{ # The platforms *from* which we cross compile. { # The platforms *from* which we cross compile.
supportedSystems ? [ "x86_64-linux" "x86_64-darwin" ] supportedSystems ? [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" ]
, # Strip most of attributes when evaluating to spare memory usage , # Strip most of attributes when evaluating to spare memory usage
scrubJobs ? true scrubJobs ? true
}: }:
@ -10,7 +10,7 @@
with import ./release-lib.nix { inherit supportedSystems scrubJobs; }; with import ./release-lib.nix { inherit supportedSystems scrubJobs; };
let let
nativePlatforms = linux; nativePlatforms = all;
common = { common = {
buildPackages.binutils = nativePlatforms; buildPackages.binutils = nativePlatforms;