diff options
| author | Ben Sima <ben@bsima.me> | 2025-11-14 22:33:07 -0500 |
|---|---|---|
| committer | Ben Sima <ben@bsima.me> | 2025-11-14 22:33:07 -0500 |
| commit | 461e9a9c410eb915c79753d07559b4dc69b1c238 (patch) | |
| tree | b177a089291f2600f14e048f0ba93ecb74cc525a | |
| parent | 81ec147f894a688c6ff96d33663b39ddbbdf5464 (diff) | |
Fix module builder: manually unpack tarball
When using custom builder, unpackPhase function is not available.
Use tar xzf to manually extract the source archive.
| -rw-r--r-- | Omni/Bild/Builder.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Omni/Bild/Builder.nix b/Omni/Bild/Builder.nix index 455efce..b71a12f 100644 --- a/Omni/Bild/Builder.nix +++ b/Omni/Bild/Builder.nix @@ -198,7 +198,7 @@ with bild; let depDrvs; in '' set -eu - unpackPhase + tar xzf $src cd source mkdir -p hidir odir ${copyDeps} |
