Open abishek opened 1 year ago
Hi. This error happens because Clojure's syntax reader disallows symbol literals starting with a number. However, you can still use 28
as a namespace if you evaluate (symbol "28" "clj-pnm")
. You should be able to evaluate this inside the defproject
form as follows.
(defproject example-project "version"
;; elided
:dependencies [[#=(symbol "28" "clj-pnm") "c7f635d0e4f163f5eaf9ffd89ffd585a617e15cd"]])
I am trying to use this plugin to include clj-pnm as a dependency.
I have this in my
:dependencies
[28/clj-pnm "c7f635d0e4f163f5eaf9ffd89ffd585a617e15cd"]
When I try to resolve the deps using
lein deps
, I get the following trace.If I replace the dependency to use my fork, it works fine.
[abishek/clj-pnm "c7f635d0e4f163f5eaf9ffd89ffd585a617e15cd"]
Should I do something different? I don't intend to maintain this project, so I'd rather not fork it and miss any updates. Thanks!