fix: stdenv system error
build-binaries / build-binaries (push) Successful in 2m11s
test / test (push) Successful in 1m22s

This commit is contained in:
2026-06-25 12:14:47 +02:00
parent 396236f242
commit da6bf17f69
@@ -1439,7 +1439,7 @@ Edit `sow-assets-manifest/flake.nix`. Add the input:
Change the outputs signature to `{ self, nixpkgs, sow-tools }`, delete the entire `crucibleVersion` / `crucibleArch` / `crucibleHashes` / `crucible = pkgs.stdenvNoCC.mkDerivation { ... }` block, and replace the `++ [ crucible ]` line in `packages` with: Change the outputs signature to `{ self, nixpkgs, sow-tools }`, delete the entire `crucibleVersion` / `crucibleArch` / `crucibleHashes` / `crucible = pkgs.stdenvNoCC.mkDerivation { ... }` block, and replace the `++ [ crucible ]` line in `packages` with:
```nix ```nix
++ [ sow-tools.packages.${pkgs.system}.crucible ]; ++ [ sow-tools.packages.${pkgs.stdenv.hostPlatform.system}.crucible ];
``` ```
(`forAllSystems` here already passes `pkgs`; `pkgs.system` is available.) (`forAllSystems` here already passes `pkgs`; `pkgs.system` is available.)