about summary refs log tree commit diff
path: root/pkgs/top-level/release.nix
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-10-02 10:45:25 +0000
committerAlyssa Ross <hi@alyssa.is>2023-10-07 19:44:28 +0000
commitac279b4e1b714f7363e55b3b51a89b38296b8b0b (patch)
tree38d9bb67a392f9b24439a4001ee9a2300be7d47b /pkgs/top-level/release.nix
parent1da4b5c99e4a8b85531d38922ce658cef1d7cfcc (diff)
release.nix: generate bootstrap tools for musl
This will allow us to regenerate our woefully out-of-date
aarch64-unknown-linux-gnu musl bootstrap tools, which can't compile
lots of modern code.

We could technically also do i686-unknown-linux-musl bootstrap tools,
but I don't know if there's demand for that, so it's best to wait and
see if somebody asks for it before we commit Hydra to it.
Diffstat (limited to 'pkgs/top-level/release.nix')
-rw-r--r--pkgs/top-level/release.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix
index cfd89a893862d..6f9db1f5769bc 100644
--- a/pkgs/top-level/release.nix
+++ b/pkgs/top-level/release.nix
@@ -16,9 +16,11 @@
 , bootstrapConfigs ? [
     "aarch64-apple-darwin"
     "aarch64-unknown-linux-gnu"
+    "aarch64-unknown-linux-musl"
     "i686-unknown-linux-gnu"
     "x86_64-apple-darwin"
     "x86_64-unknown-linux-gnu"
+    "x86_64-unknown-linux-musl"
   ]
   # Strip most of attributes when evaluating to spare memory usage
 , scrubJobs ? true