https://github.com/phronmophobic/cljonda
Integration with conda to make it easier to provide native dependencies for jvm libraries.
https://github.com/phronmophobic/cljonda
Last synced: 5 months ago
JSON representation
Integration with conda to make it easier to provide native dependencies for jvm libraries.
- Host: GitHub
- URL: https://github.com/phronmophobic/cljonda
- Owner: phronmophobic
- License: apache-2.0
- Created: 2023-05-08T04:18:54.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-05T07:42:34.000Z (over 1 year ago)
- Last Synced: 2025-10-10T16:52:44.691Z (10 months ago)
- Language: Clojure
- Homepage:
- Size: 106 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cljonda
Integration with [conda](https://github.com/conda/conda) to make it easier to provide native dependencies for jvm libraries.
## Rationale
There are many good c libraries that don't have good jvm counterparts. Support for wrapping c libraries is very good. The annoying part is that the tools for obtaining jvm libraries (ie. maven) don't integrate with the tools for obtaining native libraries (ie. package managers).
Common practice for jvm libraries that wrap native libraries is to either offload the problem of obtaining native libraries onto users or do the bare minimum to build the necessary native dependencies. For relatively isolated native libraries, building a bespoke pipeline for providing native deps is manageable, albeit cumbersome. For native dependencies that have other native dependencies, it becomes unwieldy very quickly.
Fortunately, building native libraries and their dependencies is already a solved problem (well, not really. shared libraries are still a nightmare).
The idea behind cljonda is to allow conda to do all the hard work of building native dependencies and providing simple tools for making those binaries available as maven deps.
## License
Copyright 2021 Adrian Smith. Cljonda is licensed under Apache License v2.0.