for now, copy bootstrap-tools instead of modify in-place

This commit is contained in:
Will Dietz
2018-02-13 09:44:37 -06:00
parent 0ac504227d
commit a0af2aadb6
2 changed files with 81 additions and 0 deletions
@@ -0,0 +1,18 @@
{ system, bootstrapFiles }:
derivation {
name = "bootstrap-tools";
builder = bootstrapFiles.busybox;
args = [ "ash" "-e" ./scripts/unpack-bootstrap-tools.sh ];
tarball = bootstrapFiles.bootstrapTools;
inherit system;
# Needed by the GCC wrapper.
langC = true;
langCC = true;
isGNU = true;
}