nandi/frqpublic Fork 0
2085edc45985f61dd31c685bd45af3f857753130
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.

Build the APK, out of ClojureDart and Flutter e2b0e6b · on 2085edc45985f61dd31c685bd45af3f857753130 · nandi · 7d ago
deps.edn · 18 lines · 809 BClojure Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
{;; The ClojureDart half. `../common` is the same directory `../deps.edn` puts
 ;; on jolt's classpath — one copy of frq.clock, frq.store and frq.io, compiled
 ;; twice. ClojureDart reads .cljd and .cljc and never .clj, which is why
 ;; everything shared is .cljc and everything jolt-only stays .clj: the
 ;; extension is the boundary, enforced by the compiler rather than by
 ;; convention.
 :paths ["src" "../common"]

 :deps {tensegritics/clojuredart
        {:git/url "https://github.com/Tensegritics/ClojureDart.git"
         ;; ClojureDart HEAD as of 2026-09-12. It has no releases; a sha is
         ;; the only pin there is.
         :git/sha "dfa7a0c83e0902aae23df992ded3fb7f8b577bc6"}}

 :aliases {:cljd {:main-opts ["-m" "cljd.build"]}}

 :cljd/opts {:kind :flutter
             :main frq.main}}