https://github.com/membraneframework/bunch_native
Native part of the Bunch package
https://github.com/membraneframework/bunch_native
Last synced: 3 months ago
JSON representation
Native part of the Bunch package
- Host: GitHub
- URL: https://github.com/membraneframework/bunch_native
- Owner: membraneframework
- License: apache-2.0
- Created: 2018-09-03T13:47:42.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-04-03T15:17:51.000Z (about 2 years ago)
- Last Synced: 2025-12-13T02:55:12.072Z (6 months ago)
- Language: C
- Homepage:
- Size: 59.6 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bunch Native
[](https://hex.pm/packages/bunch_native)
[](https://hexdocs.pm/bunch_native/)
[](https://circleci.com/gh/membraneframework/bunch_native)
Native part of the [Bunch](https://hex.pm/packages/bunch) package.
Documentation is available at [HexDocs](https://hexdocs.pm/bunch_native/).
The source code is available at [GitHub](https://github.com/membraneframework/bunch-native).
## Installation
Add the following line to your `deps` in `mix.exs`. Run `mix deps.get`.
```elixir
{:bunch_native, "~> 0.5.0"}
```
All the native stuff is exported as [Bundlex](https://hex.pm/packages/bundlex) dependencies: `:lib` and `:bunch` (containing NIF-specific helpers, superset of `:lib`).
To import, add the following line to your native specification in `bundlex.exs`:
```elixir
deps: [bunch_native: :lib] # or :bunch
```
and another one in your native header file:
```c
#import // or bunch.h
```
## Copyright and License
Copyright 2018, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane)
[](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane)
Licensed under the [Apache License, Version 2.0](LICENSE)