From: tumashu@163.com
To: 75417@debbugs.gnu.org
Cc: Feng Shu <tumashu@163.com>
Subject: [bug#75417] [PATCH] gnu: Add lightdm-tiny-greeter.
Date: Tue, 7 Jan 2025 13:16:56 +0800 [thread overview]
Message-ID: <20250107051656.96492-1-tumashu@163.com> (raw)
From: Feng Shu <tumashu@163.com>
* gnu/packages/display-managers.scm (lightdm-tiny-greeter): New variable.
(customize-lightdm-tiny-greeter): New variable.
(gnu): Export customize-lightdm-tiny-greeter.
Change-Id: I4c6d9df0fcc33179692c016bea5a45eaae3b029b
---
gnu/packages/display-managers.scm | 69 ++++++++++++++++++++++++++++++-
1 file changed, 68 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/display-managers.scm b/gnu/packages/display-managers.scm
index cddd3f494f..a7578f0a8b 100644
--- a/gnu/packages/display-managers.scm
+++ b/gnu/packages/display-managers.scm
@@ -65,7 +65,8 @@ (define-module (gnu packages display-managers)
#:use-module (gnu packages qt)
#:use-module (gnu packages xdisorg)
#:use-module (gnu packages xfce)
- #:use-module (gnu packages xorg))
+ #:use-module (gnu packages xorg)
+ #:export (customize-lightdm-tiny-greeter))
(define-public sddm
(package
@@ -592,6 +593,72 @@ (define-public lightdm-mini-greeter
Display Manager and LightDM GTK3 Greeter.")
(license license:gpl3))))
+(define-public lightdm-tiny-greeter
+ (let ((commit "6717c5853315ebd8164b1ddf85b9483f92cbcae8")
+ (revision "0"))
+ (package
+ (name "lightdm-tiny-greeter")
+ ;; Version 1.2 release in 2021, so we use a recent commit.
+ (version (git-version "1.2" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tobiohlala/lightdm-tiny-greeter")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1n970d6525fd918i1j09akxiacqbpxni8apkfi542bq5zg5crjbs"))))
+ (build-system glib-or-gtk-build-system)
+ (arguments
+ (list
+ #:tests? #f ; No test target.
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (add-after 'unpack 'patch-hardcoded-paths
+ (lambda _
+ (substitute* "Makefile"
+ (("PREFIX = /usr")
+ (string-append "PREFIX = " #$output))
+ (("/usr/share/xgreeters")
+ (string-append #$output "/share/xgreeters"))
+ (("cp lightdm-tiny-greeter")
+ "mkdir -p $(PREFIX)/bin; cp lightdm-tiny-greeter"))))
+ (add-after 'install 'fix-.desktop-file
+ (lambda _
+ (substitute* (string-append
+ #$output "/share/xgreeters/lightdm-tiny-greeter.desktop")
+ (("Exec=lightdm-tiny-greeter")
+ (string-append "Exec="
+ (string-append
+ #$output "/bin/lightdm-tiny-greeter")))))))))
+ (native-inputs
+ (list autoconf automake pkg-config))
+ (inputs
+ (list gtk+ lightdm))
+ (synopsis "Tiny Greeter for LightDM")
+ (home-page "https://github.com/prikhi/lightdm-tiny-greeter")
+ (description "A tiny yet customizable GTK3 LightDM Greeter with focus on code and
+minimalism.")
+ (license license:bsd-3))))
+
+(define* (customize-lightdm-tiny-greeter #:key (session "default"))
+ "Make a customized lightdm-tiny-greeter package with SESSION."
+ (package
+ (inherit lightdm-tiny-greeter)
+ (name (string-append (package-name lightdm-tiny-greeter) "-" session))
+ (arguments
+ (substitute-keyword-arguments
+ (package-arguments lightdm-tiny-greeter)
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (add-after 'unpack 'patch-config-h
+ (lambda _
+ (substitute* "config.h"
+ (("\\*session = \"default\";")
+ (string-append "*session = \"" #$session "\";")))))))))))
+
(define-public slim
(package
(name "slim")
--
2.45.2
next reply other threads:[~2025-01-07 5:18 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-07 5:16 tumashu [this message]
2025-01-08 13:18 ` [bug#75417] [PATCH v2] gnu: Add lightdm-tiny-greeter tumashu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250107051656.96492-1-tumashu@163.com \
--to=tumashu@163.com \
--cc=75417@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.