release-cross: Cross compile from all 3 supported platforms

This commit is contained in:
John Ericson
2018-10-23 23:20:48 -04:00
parent ab6bbdd5cd
commit 22df9423cd
+2 -2
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;