gnu: Add tuigreet.

* gnu/packages/admin.scm (tuigreet): New package.
* gnu/packages/rust-crates.scm: Move to a dedicated repository.
* gnu/packages/rust-sources.scm: Likewise.

Change-Id: If4936c3f535ff13316c367a27b19f27dd3594103
This commit is contained in:
Hilton Chain 2025-06-19 20:35:57 +08:00
parent b72b19b500
commit b1273f5edc
No known key found for this signature in database
GPG key ID: ACC66D09CA528292
3 changed files with 404 additions and 0 deletions

View file

@ -6091,6 +6091,29 @@ on a GUI toolkit.")
(home-page "https://git.sr.ht/~kennylevinsen/gtkgreet")
(license license:gpl3+)))
(define-public tuigreet
(package
(name "tuigreet")
(version "0.9.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/apognu/tuigreet")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"15h2b97clllbhlw5jc4lwkmir18njnyk56zghafsas84m6jjsikv"))))
(build-system cargo-build-system)
(arguments (list #:install-source? #f))
(inputs (cargo-inputs 'tuigreet))
(home-page "https://github.com/apognu/tuigreet")
(synopsis "Graphical console greeter for @code{greetd}")
(description
"This package provides a graphical console greeter for @code{greetd}. It
doesn't need a Wayland compositor to be used.")
(license license:gpl3+)))
(define-public libseat
(package
(name "libseat")