Popularity
4.8
Declining
Activity
0.0
Stable
9
2
3

Monthly Downloads: 25
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Development     FFI     Bindings    

bindings-lxc alternatives and similar packages

Based on the "bindings" category.
Alternatively, view bindings-lxc alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of bindings-lxc or a related project?

Add another 'bindings' Package

README

bindings-lxc

Hackage package Build Status

Direct Haskell bindings to LXC (Linux containers) C API.

The package provides direct bindings to LXC C API through @bindings-dsl@.

For high-level Haskell LXC API see lxc package.

Requirements

Before installation make sure you have LXC installed on your system with header files and static library.

On Ubuntu 14.04 LTS (Trusty Tahr):

$ sudo apt-get install lxc-dev

On previous Ubuntu versions (including 12.04 LTS Precise Pangolin) standard repositories do not contain liblxc1 package. You might want to use ppa:ubuntu-lxc/stable repository instead:

$ sudo apt-get install software-properties-common python-software-properties
$ sudo add-apt-repository ppa:ubuntu-lxc/stable
$ sudo apt-get update
$ sudo apt-get install lxc-dev

Installation

Get the latest stable version from Hackage:

$ cabal install bindings-lxc

or clone this repository:

$ git clone https://github.com/fizruk/bindings-lxc.git
$ cd bindings-lxc
$ cabal install

Documentation

Haddock documentation is available at http://fizruk.github.io/bindings-lxc/docs/

Contributing

Contributions and bug reports are welcome!

Please feel free to contact me via GitHub or on the #haskell IRC channel on irc.freenode.net.

-Nickolay Kudasov