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
:native-prefix is not a thing in tools.deps
the natives-windows part is a classifier though
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)
thank you! I'll study the samples