summaryrefslogtreecommitdiffstats
path: root/pkgs/top-level/release-cross.nix
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-09-11 14:18:24 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-10-23 23:20:48 -0400
commit22df9423cd1f87b4390e9f7879636ecd0c508d96 (patch)
tree15dba03c0a267ede80ed7d1fad812df80d32533a /pkgs/top-level/release-cross.nix
parentab6bbdd5cd2a271ac795f1f44a94f77e41edf29f (diff)
release-cross: Cross compile from all 3 supported platforms
Diffstat (limited to 'pkgs/top-level/release-cross.nix')
-rw-r--r--pkgs/top-level/release-cross.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix
index 0d15d817a66c..89a8af6794f6 100644
--- a/pkgs/top-level/release-cross.nix
+++ b/pkgs/top-level/release-cross.nix
@@ -2,7 +2,7 @@
*/
{ # 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
scrubJobs ? true
}:
@@ -10,7 +10,7 @@
with import ./release-lib.nix { inherit supportedSystems scrubJobs; };
let
- nativePlatforms = linux;
+ nativePlatforms = all;
common = {
buildPackages.binutils = nativePlatforms;