From a933aa9a8df44fa141eb24a802e38d7be3473918 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Sun, 18 Feb 2018 01:48:07 -0500 Subject: busybox-sandbox-shell: Fix build on RISC-V --- pkgs/os-specific/linux/busybox/sandbox-shell.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pkgs/os-specific') diff --git a/pkgs/os-specific/linux/busybox/sandbox-shell.nix b/pkgs/os-specific/linux/busybox/sandbox-shell.nix index 1755bd4f3f7..b94fae7f787 100644 --- a/pkgs/os-specific/linux/busybox/sandbox-shell.nix +++ b/pkgs/os-specific/linux/busybox/sandbox-shell.nix @@ -1,8 +1,9 @@ -{ busybox }: +{ busybox, hostPlatform }: # Minimal shell for use as basic /bin/sh in sandbox builds busybox.override { - useMusl = true; + # musl roadmap has RISC-V support projected for 1.1.20 + useMusl = !hostPlatform.isRiscV; enableStatic = true; enableMinimal = true; extraConfig = '' -- cgit 1.4.1