leiningen

lgessler 2022-05-16T22:13:31.154449Z

hi, can someone help me translate this deps.edn-ism into a leiningen style dependency? org.lwjgl/lwjgl$natives-windows {:mvn/version "3.2.3" :native-prefix ""} poked around in the lein docs but it doesn't seem to comment

Alex Miller (Clojure team) 2022-05-16T22:20:47.115759Z

:native-prefix is not a thing in tools.deps

Alex Miller (Clojure team) 2022-05-16T22:21:05.573919Z

the natives-windows part is a classifier though

Alex Miller (Clojure team) 2022-05-16T22:23:01.380909Z

In lein this would be [org.lwjgl/lwjgl "3.2.3" :classifier "natives-windows" :native-prefix ""] (there is an example of this in lein sample btw)

✔️ 1
lgessler 2022-05-16T22:30:28.565939Z

thank you! I'll study the samples