nandi/frqpublic Fork 0
dd6723379af757893126636240beb2e911a81d58
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

justfile · 260 lines · 11.8 KBMakefile Blame HistoryRaw
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago1# The work is here now, in recipe bodies, where it used to be in scripts/ —
2# babashka scripts run through a scripts/bb that went looking for a babashka.
3# That indirection bought one thing worth having, a shared way to reach nix on
4# a host that keeps it in a container, and `nix` below is the whole of it.
5#
6# Every recipe that runs frq has the same shape: outside the dev shell, re-enter
7# it and come back to this same recipe; inside, hand jolt the deps overrides and
8# the library path the shell exported. The re-entry test is JOLT_NATIVE_LIB,
9# which only the shell sets — no flag to forget, and no second code path for
10# someone who runs `nix develop --command just run` by hand.
Take glimmer-vidya from gitlab, so a stranger can build this 5c40e75 nandi 19d ago11
Write the build in babashka, and pin the babashka 34832a8 nandi 18d ago12set shell := ["bash", "-euo", "pipefail", "-c"]
A freeq client in jolt, as glimmer components on Vidya 4719d6f nandi 20d ago13
Give the terminal's classpath an nREPL, and hand recipes their arguments 664397d nandi 10d ago14# Every recipe below is a `#!` script and passes its arguments on with "$@".
15# Without this that is empty in one — just interpolates into a shebang recipe
16# rather than handing it argv — and `just tui --headless` silently ran the
17# terminal instead.
18set positional-arguments
19
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago20# nix is not on every host this runs on: on the machine these recipes were
21# written for it lives in an Arch distrobox, at the same path — which is why
22# the container is entered rather than the tree copied into it. See CLAUDE.md.
23nix := `command -v nix >/dev/null 2>&1 && echo nix || echo "distrobox enter arch -- nix"`
24
25# --max-jobs 0 is what sends the work to the `builders` entry rather than
26# compiling it here. Left to the default, nix prefers the local machine, and a
27# cold jolt-native is egui, openh264 and quinn on a laptop — for a derivation a
28# remote builder has likely built already. FRQ_MAX_JOBS=auto is the way out on
29# a machine with no builder configured.
30jobs := env("FRQ_MAX_JOBS", "0")
31
A freeq client in jolt, as glimmer components on Vidya 4719d6f nandi 20d ago32default:
33 @just --list
34
Paint the phone in COSMIC's own theme, read from cosmic-config ba4e71b nandi 7d ago35# Re-read the COSMIC theme into the APK.
36#
37# libcosmic asks cosmic-config for the accent and the surfaces at run time, so
38# `just run` already follows COSMIC Settings as it changes. A phone has no
39# cosmic-config, so the APK carries them instead — read here, on the machine
40# that has them, and compiled in. That is the one real difference between the
41# two, and it is why the generated file is in git rather than gitignored: a
42# checkout on a machine with no COSMIC still builds.
43#
44# Run it after changing the theme in COSMIC Settings, then `just apk`.
45theme:
46 #!/usr/bin/env bash
47 set -euo pipefail
48 cd "{{justfile_directory()}}"
49 python3 tools/cosmic2cljd.py flutter/src/frq/theme/cosmic.cljd
50
Build the APK, out of ClojureDart and Flutter e2b0e6b nandi 7d ago51# The APK: ClojureDart compiled to Dart, then Flutter's Gradle build.
52#
53# Impure on purpose, and worth saying why rather than leaving it to be
54# discovered. Gradle resolves its own dependencies over the network and
55# installs build-tools and a platform into ANDROID_HOME as it goes, so it
56# cannot run in a sandbox and cannot write to the store. What nix gives here
57# is the toolchain — clojure, a JDK, Flutter, and an SDK composed by
58# androidenv — and the recipe copies that SDK somewhere writable
59# (flutter/.home) for Gradle to finish off. That copy and everything Gradle
60# leaves behind are gitignored.
61#
62# No ndkVersion in android/app/build.gradle.kts, for the same reason: the
63# Flutter template sets it, setting it makes Gradle fetch that exact NDK, and
64# there is no native code here to need one.
65#
66# just apk build the debug APK
67# just apk install build it and put it on a connected device
68# just apk run install and launch
69# just apk log logcat, filtered to this app
70apk action="build":
71 #!/usr/bin/env bash
72 set -euo pipefail
73 cd "{{justfile_directory()}}/flutter"
74
75 sdk="$(nix build --impure --no-link --print-out-paths \
76 --expr 'let pkgs = import (builtins.getFlake "github:NixOS/nixpkgs/nixos-unstable") { system = "x86_64-linux"; config = { allowUnfree = true; android_sdk.accept_license = true; }; }; in (pkgs.androidenv.composeAndroidPackages { cmdLineToolsVersion = "13.0"; buildToolsVersions = [ "34.0.0" ]; platformVersions = [ "35" "34" ]; includeNDK = false; }).androidsdk')/libexec/android-sdk"
77
78 export HOME="$PWD/.home"
79 export ANDROID_HOME="$HOME/android-sdk"
80 export ANDROID_SDK_ROOT="$ANDROID_HOME"
81 mkdir -p "$HOME"
82
83 # Gradle writes into ANDROID_HOME, so it is a copy rather than the store
84 # path. Made once and kept: re-copying would throw away the build-tools
85 # and platform Gradle installed into it on the last run.
86 if [ ! -d "$ANDROID_HOME" ]; then
87 cp -r "$sdk" "$ANDROID_HOME"
88 chmod -R u+w "$ANDROID_HOME"
89 fi
90
91 flutter="nix shell nixpkgs#clojure nixpkgs#jdk17 nixpkgs#flutter --command"
92
93 $flutter clojure -M:cljd compile
94
95 # Rewritten every run: it carries absolute store paths, and the flutter
96 # one moves whenever nixpkgs does.
97 $flutter flutter config --android-sdk "$ANDROID_HOME" >/dev/null
98
99 apk=build/app/outputs/flutter-apk/app-debug.apk
100 adb="${ADB:-$ANDROID_HOME/platform-tools/adb}"
101
102 case "{{action}}" in
103 build) $flutter flutter build apk --debug ;;
104 install) $flutter flutter build apk --debug && "$adb" install -r "$apk" ;;
105 run) $flutter flutter build apk --debug && "$adb" install -r "$apk" \
106 && "$adb" shell monkey -p uk.nandi.frq -c android.intent.category.LAUNCHER 1 ;;
107 log) "$adb" logcat -s flutter ;;
108 *) echo "usage: just apk [build|install|run|log]" >&2; exit 1 ;;
109 esac
110
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago111# Two halves, and the split is the point. The frq source is the files on disk,
Split the tree three ways, and let the phone be Flutter's 7070931 nandi 7d ago112# uncommitted edits and all. Everything under it — jolt, glimmer, glimmer-cosmic
113# and the native objects — is the flake's, built rather than fetched.
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago114#
115# Deliberately not `nix run .#frq`. That builds the flake's own copy of the
116# source, which is the tree as git has it — so an edit that has not been
117# committed, or committed on a branch the command was not pointed at, runs as
118# whatever was there before, silently. A run meant to answer "does my change
119# work" has to be the files on disk.
120#
Split the tree three ways, and let the phone be Flutter's 7070931 nandi 7d ago121# libcosmic paints through wgpu, so this needs nixGL off NixOS for the same
122# reason the window always did: the real driver is the host's.
123#
124# There is no jvui and no vidya here any more — both were experiments. The
125# window is libcosmic and the terminal is libjolttui, and those are the two.
126#
Run this tree on a native half the builders made a32699e nandi 17d ago127# The app: this tree's source on the flake's everything-else, in the dev shell.
A freeq client in jolt, as glimmer components on Vidya 4719d6f nandi 20d ago128run *args:
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago129 #!/usr/bin/env bash
130 set -euo pipefail
131 cd "{{justfile_directory()}}"
132 if [ -z "${JOLT_NATIVE_LIB:-}" ]; then
133 exec {{nix}} develop . --max-jobs {{jobs}} --command just run "$@"
134 fi
135
136 deps="{:deps {jolt-lang/glimmer {:local/root \"$GLIMMER_SRC\"}"
Split the tree three ways, and let the phone be Flutter's 7070931 nandi 7d ago137 deps="$deps nandi/glimmer-cosmic {:local/root \"$GLIMMER_COSMIC_SRC\"}}}"
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago138
139 export LD_LIBRARY_PATH="$JOLT_NATIVE_LIB:$FRQ_LIB_PATH${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
Paint the same screens into a terminal ab83b42 nandi 17d ago140
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago141 runner=()
142 [ -e /run/current-system ] || runner=("$NIXGL")
143
Split the tree three ways, and let the phone be Flutter's 7070931 nandi 7d ago144 exec "${runner[@]}" jolt -Sdeps "$deps" -m frq.cosmic "$@"
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago145
Split the tree three ways, and let the phone be Flutter's 7070931 nandi 7d ago146# `run` with the other backend under it. Only libjolttui: `frq.app` names no
147# backend at all any more, and `frq.tui` requires glimmer-tui so the one
148# installed is the terminal.
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago149#
150# No nixGL here, unlike `run`: a terminal wants nothing from the host's GL
151# driver, which is the reason this output exists on machines that have none.
152#
Paint the same screens into a terminal ab83b42 nandi 17d ago153# The same screens in a terminal. `just tui --headless` prints one screenshot.
154tui *args:
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago155 #!/usr/bin/env bash
156 set -euo pipefail
157 cd "{{justfile_directory()}}"
158 if [ -z "${JOLT_NATIVE_LIB:-}" ]; then
159 exec {{nix}} develop . --max-jobs {{jobs}} --command just tui "$@"
160 fi
161
162 deps="{:deps {jolt-lang/glimmer {:local/root \"$GLIMMER_SRC\"}"
163 deps="$deps nandi/glimmer-tui {:local/root \"$GLIMMER_TUI_SRC\"}}}"
164
165 export LD_LIBRARY_PATH="$JOLT_NATIVE_LIB${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
Build the desktop libraries rather than fetching a release of them 0b81161 nandi 15d ago166
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago167 exec jolt -Sdeps "$deps" -m frq.tui "$@"
168
Give the terminal's classpath an nREPL, and hand recipes their arguments 664397d nandi 10d ago169# The same classpath as `tui`, with an nREPL on it instead of a `-main`: a
170# session that can require `frq.tui` and then redefine a component while it is
171# on screen, which is a second and not the minute a rebuild costs.
172#
173# just nrepl then, from an editor or a client on 7888:
174# (require (quote frq.tui)) both backends, terminal installed last
175# (frq.tui/-main "--headless" "--demo")
176# (glimmer.core/reload!) re-mount after redefining a component
177#
178# `just repl nrepl-server` is the window's half of this — the same thing minus
179# glimmer-tui. Port is nrepl-server's own positional: `just nrepl 7889`.
180nrepl *args:
181 #!/usr/bin/env bash
182 set -euo pipefail
183 cd "{{justfile_directory()}}"
184 if [ -z "${JOLT_NATIVE_LIB:-}" ]; then
185 exec {{nix}} develop . --max-jobs {{jobs}} --command just nrepl "$@"
186 fi
187
188 deps="{:deps {jolt-lang/glimmer {:local/root \"$GLIMMER_SRC\"}"
189 deps="$deps nandi/glimmer-tui {:local/root \"$GLIMMER_TUI_SRC\"}}}"
190
191 export LD_LIBRARY_PATH="$JOLT_NATIVE_LIB:$FRQ_LIB_PATH${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
192
193 exec jolt -Sdeps "$deps" nrepl-server "$@"
194
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago195# `jolt` in the repo root does not work on its own: deps.edn carries
196# :jolt/native, so every invocation here loads libvidya and libjoltmoq before it
197# reads a line, and dies naming the library if the loader cannot find them. So
198# this is `run` without the app — and `run` is this with a window's worth of
199# extra care about the GL driver.
200#
Build the desktop libraries rather than fetching a release of them 0b81161 nandi 15d ago201# A jolt with the native libraries under it: a REPL, or `just repl nrepl-server`.
202repl *args:
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago203 #!/usr/bin/env bash
204 set -euo pipefail
205 cd "{{justfile_directory()}}"
206 if [ -z "${JOLT_NATIVE_LIB:-}" ]; then
207 exec {{nix}} develop . --max-jobs {{jobs}} --command just repl "$@"
208 fi
209
210 deps="{:deps {jolt-lang/glimmer {:local/root \"$GLIMMER_SRC\"}"
Split the tree three ways, and let the phone be Flutter's 7070931 nandi 7d ago211 deps="$deps nandi/glimmer-cosmic {:local/root \"$GLIMMER_COSMIC_SRC\"}}}"
Inline the babashka scripts into the justfile 76dcc6c nandi 11d ago212
213 export LD_LIBRARY_PATH="$JOLT_NATIVE_LIB:$FRQ_LIB_PATH${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
214
215 exec jolt -Sdeps "$deps" "$@"
Bind libmoq_ffi from the object's own metadata, not from its header 9f081a1 nandi 9d ago216
217# Regenerate src/frq/moq/raw.clj from the libmoq_ffi we actually load.
218#
219# UniFFI embeds its interface metadata in the object, so `uniffi-bindgen
220# --library` reads the truth out of the .so rather than a header shipped
Fetch libmoq_ffi again, and keep the codecs out of Rust f518938 nandi 9d ago221# beside it. Those differ at one version number: the published Linux and
222# Android objects are built without moq-ffi's `audio` and `video` features
223# (206 functions, no codecs), while the shipped C header describes the Apple
224# build (230). The object is the only source this recipe will accept.
Bind libmoq_ffi from the object's own metadata, not from its header 9f081a1 nandi 9d ago225#
226# The bindgen must match the uniffi that built the object — 0.32 for moq-ffi
227# 0.3.17 — and it is built once into the scratch dir rather than pinned into
228# the flake: nothing in a normal build needs it, and a regeneration is a thing
229# done when the moq-ffi pin moves, by hand, on purpose.
230#
231# just gen-moq # the loaded library
232# just gen-moq path/to/libmoq_ffi.so
233#
234# Regenerate the libmoq_ffi bindings from the object's own embedded metadata.
235gen-moq lib="":
236 #!/usr/bin/env bash
237 set -euo pipefail
238 lib="${1:-${JOLT_NATIVE_LIB:-}/libmoq_ffi.so}"
239 [ -f "$lib" ] || { echo "no libmoq_ffi.so at $lib — pass one: just gen-moq <path>" >&2; exit 1; }
240 work="${TMPDIR:-/tmp}/frq-gen-moq"
241 mkdir -p "$work/ubg/src"
242 cat > "$work/ubg/Cargo.toml" <<'TOML'
243 [package]
244 name = "ubg"
245 version = "0.1.0"
246 edition = "2021"
247 [[bin]]
248 name = "uniffi-bindgen"
249 path = "src/main.rs"
250 [dependencies]
251 uniffi = { version = "0.32", features = ["cli"] }
252 TOML
253 echo 'fn main() { uniffi::uniffi_bindgen_main() }' > "$work/ubg/src/main.rs"
254 ( cd "$work/ubg" && cargo build --release -q )
255 ( cd "$work/ubg" && ./target/release/uniffi-bindgen generate \
256 --library "$lib" --language python --out-dir "$work/py" --no-format )
257 python3 tools/py2jolt.py "$work"/py/*.py > "$work/body.clj"
258 { sed -n '1,/^ (:require \[jolt.ffi :as ffi\]))$/p' src/frq/moq/raw.clj; echo; cat "$work/body.clj"; } > "$work/raw.clj"
259 mv "$work/raw.clj" src/frq/moq/raw.clj
260 echo "wrote src/frq/moq/raw.clj ($(grep -c '^(ffi/defcfn' src/frq/moq/raw.clj) entry points)"