mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
amesgen passed away in late 2025:
https://www.tweag.io/blog/2025-12-16-in-memoriam-amesgen/
Condolences to their family and friends.
This patch removes them from the meta.maintainers of packages.
I take over some of the packages they maintained, where I feel
qualified.
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
24 lines
415 B
Nix
24 lines
415 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.programs.bazecor;
|
|
in
|
|
{
|
|
options = {
|
|
programs.bazecor = {
|
|
enable = lib.mkEnableOption "Bazecor, the graphical configurator for Dygma Products";
|
|
package = lib.mkPackageOption pkgs "bazecor" { };
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [ cfg.package ];
|
|
services.udev.packages = [ cfg.package ];
|
|
};
|
|
}
|