sxmo-utils: mark as broken/unmaintained

This commit is contained in:
Colin 2024-03-09 21:09:32 +00:00
parent 30d49dc3c3
commit 1d3576b892
2 changed files with 14 additions and 4 deletions

View File

@ -15,8 +15,9 @@ the only hard dependency for my exported pkgs/modules should be [nixpkgs][nixpkg
building [hosts/](./hosts/) will require [sops][sops].
you might specifically be interested in these files (elaborated further in #key-points-of-interest):
- [`sxmo-utils`](./pkgs/additional/sxmo-utils/default.nix)
- [example SXMO deployment](./hosts/modules/gui/sxmo/default.nix)
- ~~[`sxmo-utils`](./pkgs/additional/sxmo-utils/default.nix)~~
- ~~[example SXMO deployment](./hosts/modules/gui/sxmo/default.nix)~~
- these files will remain until my config settles down, but i no longer use or maintain SXMO.
- [my implementation of impermanence](./modules/persist/default.nix)
- my way of deploying dotfiles/configuring programs per-user:
- [modules/fs/](./modules/fs/default.nix)

View File

@ -1,3 +1,6 @@
# THIS PACKAGE IS NOT MAINTAINED.
# see the note at the bottom for more details
#
{ stdenv
, bash
, bc
@ -244,7 +247,13 @@ stdenv.mkDerivation rec {
homepage = "https://git.sr.ht/~mil/sxmo-utils";
description = "Contains the scripts and small C programs that glues the sxmo enviroment together";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ colinsane ];
platforms = lib.platforms.linux;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
# THIS PACKAGE IS NOT MAINTAINED.
# if you would like to take over maintainership, message me and i will redirect users to your repository.
# - colin@uninsane.org (email)
# - @colin:uninsane.org (matrix)
];
broken = true; # TODO: patch configs/external-services the same way as configs/services
};
}