add maintainer info
Some checks failed
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 7s
Check Nix flake / Perform Nix flake checks (pull_request) Failing after 2m48s

This commit is contained in:
2026-05-01 01:31:44 -04:00
parent 6ef3f87d16
commit 41e50f98b5
3 changed files with 14 additions and 0 deletions

View File

@@ -10,6 +10,9 @@
libxcb,
}:
let
maintainers = import ../maintainers.nix;
in
rustPlatform.buildRustPackage rec {
pname = "claurst";
version = "0.0.9";
@@ -43,6 +46,7 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/Kuberwastaken/claurst";
license = licenses.gpl3Only;
mainProgram = "claurst";
maintainers = [ maintainers.alice ];
platforms = platforms.linux;
};
}