presentations/justfile

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

17 lines
326 B
Makefile
Raw Permalink Normal View History

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