Compare commits

..

2 commits

Author SHA1 Message Date
atagen
40fae13c23 switch to homegrown pinning
All checks were successful
Nix Build / nix build (push) Successful in 12s
2026-05-21 15:53:20 +10:00
atagen
6169a59291 nu 2026-05-21 15:53:20 +10:00

View file

@ -48,6 +48,11 @@ def nix-build-nom [out: string, source: string, attr: string, extras: list<strin
} else {
^nix-build --log-format internal-json --out-link $out $source -A $attr ...$extras out+err>| ^$env.MONITOR --json
}
# Piping to MONITOR masks nix-build's exit code, so detect failure by the
# absence of the out-link.
if not ($out | path exists) {
error make { msg: "nix-build produced no output" }
}
}
def differ-step [build: string] {