summaryrefslogtreecommitdiffstats
path: root/pkgs/top-level/release-cross.nix
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-02-22 08:33:27 -0600
committerWill Dietz <w@wdtz.org>2018-02-22 08:33:27 -0600
commit76879b83ac55e1454a7e5a5de92740d2577d14d7 (patch)
treecde43e70c3f90337697b9522bb529876702a62a9 /pkgs/top-level/release-cross.nix
parent844a494d809a9414a7850072c7d0f8f8f45710b2 (diff)
release-cross: minor cleanup, add aarch64-musl
Diffstat (limited to 'pkgs/top-level/release-cross.nix')
-rw-r--r--pkgs/top-level/release-cross.nix33
1 files changed, 13 insertions, 20 deletions
diff --git a/pkgs/top-level/release-cross.nix b/pkgs/top-level/release-cross.nix
index 61cf865371df..74394379b399 100644
--- a/pkgs/top-level/release-cross.nix
+++ b/pkgs/top-level/release-cross.nix
@@ -50,6 +50,15 @@ let
buildPackages.binutils = darwin;
};
+ rpiCommon = linuxCommon // {
+ vim = nativePlatforms;
+ unzip = nativePlatforms;
+ ddrescue = nativePlatforms;
+ lynx = nativePlatforms;
+ patchelf = nativePlatforms;
+ buildPackages.binutils = nativePlatforms;
+ mpg123 = nativePlatforms;
+ };
in
{
@@ -111,30 +120,14 @@ in
fuloongminipc = mapTestOnCross lib.systems.examples.fuloongminipc linuxCommon;
/* Linux on Raspberrypi */
- rpi = mapTestOnCross lib.systems.examples.raspberryPi (linuxCommon // {
- vim = nativePlatforms;
- unzip = nativePlatforms;
- ddrescue = nativePlatforms;
- lynx = nativePlatforms;
- patchelf = nativePlatforms;
- buildPackages.binutils = nativePlatforms;
- mpg123 = nativePlatforms;
- });
+ rpi = mapTestOnCross lib.systems.examples.raspberryPi rpiCommon;
+ rpi-musl = mapTestOnCross lib.systems.examples.muslpi rpiCommon;
/* Linux on Aarch64 (TODO make android for real) */
- android = mapTestOnCross lib.systems.examples.aarch64-multiplatform (linuxCommon // {
- });
+ android = mapTestOnCross lib.systems.examples.aarch64-multiplatform linuxCommon;
+ aarch64-musl = mapTestOnCross lib.systems.examples.aarch64-multiplatform-musl linuxCommon;
x86_64-musl = mapTestOnCross lib.systems.examples.musl64 linuxCommon;
- rpi-musl = mapTestOnCross lib.systems.examples.muslpi (linuxCommon // {
- vim = nativePlatforms;
- unzip = nativePlatforms;
- ddrescue = nativePlatforms;
- lynx = nativePlatforms;
- patchelf = nativePlatforms;
- buildPackages.binutils = nativePlatforms;
- mpg123 = nativePlatforms;
- });
/* Cross-built bootstrap tools for every supported platform */
bootstrapTools = let