eval / deps-try

Try out Clojure (libraries) via rebel-readline
MIT License
120 stars 4 forks source link

Deps needing prep #25

Open eval opened 1 year ago

eval commented 1 year ago

problem

This fails:

$ deps-try-dev io.github.yogthos/Selmer
[Rebel readline] Type :repl/help for online help info
user=> (require '[selmer.parser :as selmer])
Execution error (FileNotFoundException) at user/eval8200 (REPL:1).
Could not locate selmer/parser__init.class, selmer/parser.clj or selmer/parser.cljc on classpath.
user=>

because this fails:

~/projects/deps-try/deps-try (master *=)
$ clj -Sdeps '{:deps {io.github.yogthos/Selmer {:git/sha "d1a40e5114427d3176fb5269425780abcf461924"}}}'
Error building classpath. The following libs must be prepared before use: [io.github.yogthos/Selmer]

Needed: https://clojure.org/guides/deps_and_cli#prep_libs

directions