nixpkgs/pkgs/stdenv/linux/bootstrap-tools-musl/default.nix
2018-02-13 09:44:39 -06:00

19 lines
315 B
Nix

{ 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;
}