GNU bug report logs -
#64932
[PATCH] gnu: Add abstract-sddm-theme.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 64932 in the body.
You can then email your comments to 64932 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#64932
; Package
guix-patches
.
(Sat, 29 Jul 2023 12:57:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Sergio Pastor Pérez <sergio.pastorperez <at> outlook.es>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sat, 29 Jul 2023 12:57:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/display-managers.scm (abstract-sddm-theme): New variable.
---
gnu/packages/display-managers.scm | 33 +++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/display-managers.scm b/gnu/packages/display-managers.scm
index dcfa3bcf3f..f33889d23d 100644
--- a/gnu/packages/display-managers.scm
+++ b/gnu/packages/display-managers.scm
@@ -177,6 +177,39 @@ (define-public dexy-color-sddm-theme
(description "Dexy-Color-SDDM is part of KDE Themes and Extensions.")
(license license:gpl3+))))
+(define-public abstract-sddm-theme
+ (let ((commit "e817d4b27981080cd3b398fe928619ffa16c52e7")
+ (revision "0"))
+ (package
+ (name "abstract-sddm-theme")
+ (version (git-version "0.0.0" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/3ximus/abstractdark-sddm-theme")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1si141hnp4lr43q36mbl3anlx0a81r8nqlahz3n3l7zmrxb56s2y"))))
+ (build-system trivial-build-system)
+ (arguments
+ `(#:modules ((guix build utils))
+ #:builder (begin
+ (use-modules (guix build utils))
+ (let* ((out (assoc-ref %outputs "out"))
+ (sddm-themes (string-append out
+ "/share/sddm/themes")))
+ (mkdir-p sddm-themes)
+ (copy-recursively (assoc-ref %build-inputs "source")
+ (string-append sddm-themes
+ "/abstract"))))))
+ (home-page "https://github.com/3ximus/abstractdark-sddm-theme")
+ (synopsis "Abstract Dark theme for SDDM")
+ (description
+ "This package provides a simple theme for SDDM inspired by solarized-sddm-theme.")
+ (license license:gpl3+))))
+
(define-public guix-simplyblack-sddm-theme
(package
(name "guix-simplyblack-sddm-theme")
base-commit: e43cbeafd1b632f39b08b3644af5230d5350a656
prerequisite-patch-id: c56db9fa7fc4e07452dea53f2d450bd83abbbc1a
--
2.39.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#64932
; Package
guix-patches
.
(Sun, 17 Sep 2023 13:16:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 64932 <at> debbugs.gnu.org (full text, mbox):
Sergio Pastor Pérez <sergio.pastorperez <at> outlook.es> skribis:
> * gnu/packages/display-managers.scm (abstract-sddm-theme): New variable.
[...]
> + (build-system trivial-build-system)
> + (arguments
> + `(#:modules ((guix build utils))
> + #:builder (begin
> + (use-modules (guix build utils))
> + (let* ((out (assoc-ref %outputs "out"))
> + (sddm-themes (string-append out
> + "/share/sddm/themes")))
> + (mkdir-p sddm-themes)
> + (copy-recursively (assoc-ref %build-inputs "source")
> + (string-append sddm-themes
> + "/abstract"))))))
> + (home-page "https://github.com/3ximus/abstractdark-sddm-theme")
> + (synopsis "Abstract Dark theme for SDDM")
> + (description
> + "This package provides a simple theme for SDDM inspired by solarized-sddm-theme.")
Same suggestions as for dexy-color-sddm-theme. :-)
Ludo’.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#64932
; Package
guix-patches
.
(Wed, 20 Sep 2023 21:33:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 64932 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/display-managers.scm (abstractdark-sddm-theme): New variable.
---
Hi.
Here you have the corrections you've asked. I've sent you another mail with the
changes for the dexy-color-sddm-theme.
Good night,
Sergio.
gnu/packages/display-managers.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/display-managers.scm b/gnu/packages/display-managers.scm
index ef9826c0f7..ba9e26142e 100644
--- a/gnu/packages/display-managers.scm
+++ b/gnu/packages/display-managers.scm
@@ -168,6 +168,31 @@ (define-public dexy-color-sddm-theme
background.")
(license license:gpl3+))))
+(define-public abstractdark-sddm-theme
+ (let ((commit "e817d4b27981080cd3b398fe928619ffa16c52e7")
+ (revision "0"))
+ (package
+ (name "abstractdark-sddm-theme")
+ (version (git-version "0.0.0" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/3ximus/abstractdark-sddm-theme")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1si141hnp4lr43q36mbl3anlx0a81r8nqlahz3n3l7zmrxb56s2y"))))
+ (build-system copy-build-system)
+ (arguments
+ `(#:install-plan '(("." "/share/sddm/themes/abstractdark"))))
+ (home-page "https://github.com/3ximus/abstractdark-sddm-theme")
+ (synopsis "Abstract Dark theme for SDDM")
+ (description
+ "This package provides a minimalistic dark theme for SDDM, black
+background with abstract shapes. Inspired by solarized-sddm-theme.")
+ (license license:gpl3+))))
+
(define-public guix-simplyblack-sddm-theme
(package
(name "guix-simplyblack-sddm-theme")
base-commit: 4bdb8bd2674c2b630626be43a5cd3c2b65401b52
prerequisite-patch-id: 5c871c0f03698adb5cbf1aa075bfce296029bc03
--
2.41.0
Reply sent
to
Ludovic Courtès <ludo <at> gnu.org>
:
You have taken responsibility.
(Sat, 14 Oct 2023 15:31:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Sergio Pastor Pérez <sergio.pastorperez <at> outlook.es>
:
bug acknowledged by developer.
(Sat, 14 Oct 2023 15:31:01 GMT)
Full text and
rfc822 format available.
Message #16 received at 64932-done <at> debbugs.gnu.org (full text, mbox):
HI,
Sergio Pastor Pérez <sergio.pastorperez <at> outlook.es> skribis:
> * gnu/packages/display-managers.scm (abstractdark-sddm-theme): New variable.
> ---
> Hi.
>
> Here you have the corrections you've asked. I've sent you another mail with the
> changes for the dexy-color-sddm-theme.
I had to add #:use-module (guix build-system copy). Applied with this
change.
Thanks,
Ludo’.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 12 Nov 2023 12:24:10 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 179 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.