bole 0.2.5

Manage all package managers on your system
Documentation
1
2
3
4
5
6
7
8
9
//! System-wide package managers.

pub mod homebrew;
pub mod macports;
pub mod nix;

pub use homebrew::Homebrew;
pub use macports::Macports;
pub use nix::Nix;