Fork me on GitHub
#leiningen
<
2022-05-16
>
lgessler22:05:31

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)22:05:47

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

Alex Miller (Clojure team)22:05:05

the natives-windows part is a classifier though

Alex Miller (Clojure team)22:05:01

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
lgessler22:05:28

thank you! I'll study the samples