use nix-output-monitor if available

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-05-01 22:48:30 -04:00 committed by June
parent 13f1274c35
commit 365c85ad27
2 changed files with 12 additions and 2 deletions

View file

@ -18,7 +18,12 @@ RESULTS_FILE="$3"
OCI_IMAGE="complement-conduit:dev"
pushd "$(git rev-parse --show-toplevel)" > /dev/null
nix build .#complement
# uses nix-output-monitor (nom) if available
if command -v nom &> /dev/null; then
nom build .#complement
else
nix build -L .#complement
fi
docker load < result
popd > /dev/null