#package #package-manager #declarative #darling #version #file #arch

bin+lib darling_packages

A declarative and extendable package manager

1 unstable release

0.1.0 Apr 8, 2024

#513 in Operating systems

Download history 66/week @ 2024-04-02 43/week @ 2024-04-09

109 downloads per month

MIT license

13KB
163 lines

Config Schema

The config file has the following fields:

  • [packages]: { [string]: { version: string }} - List of base

Example Configurations

  • Arch:
[packages]
firefox = { version = "124.0.2-1" }
vim = { version = "9.1.0252-1" }
neovim = { version = "0.9.5-5" }
libx11 = { version = "1.8.8-3", window_system = "X11" }
xorg-xwayland = { version = "23.2.5-1", window_system = "Wayland" }
joshuto = { version = "0.9.8-1", source = "AUR" }

Implementing Darling

  • Add darling-manager to your dependencies
  • Create an empty struct that implements darling::Declarative
  • In your main file, declare a pub static variable of your struct with the name package.

Dependencies

~5–16MB
~177K SLoC