presentations/justfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
326 B
Makefile
Raw Normal View History

2025-04-11 18:13:44 +01:00
alias b := build
_default:
just --list
build:
#!/usr/bin/env bash
selected=$(nix flake show --json | jq --raw-output '.packages["x86_64-linux"] | keys[]' | grep -v shared | fzf)
nix build \
--json \
--print-build-logs \
.#"$selected"
check:
nix flake check
clean:
rm -frv result