gnu: Add sugar-light-sddm-theme.

* gnu/packages/display-manager.scm (sugar-light-sddm-theme): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Petr Hodina 2021-11-03 09:13:46 +01:00 committed by Ludovic Courtès
parent d124f94d18
commit b850fe6ec8
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 31 additions and 0 deletions

View File

@ -220,6 +220,37 @@ probably cause you diabetes just from looking at it. Sweeten the login
experience for your users, your family and yourself")
(license license:gpl3+)))
(define-public sugar-light-sddm-theme
(package
(name "sugar-light-sddm-theme")
(version "1.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/MarianArlt/sddm-sugar-light")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1sfd5bi5jcfz3hmvvr3smalywixa70g5j96qgx1220mp6rqf886k"))))
(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 "/chili"))))))
(home-page "https://github.com/MarianArlt/sddm-sugar-light")
(synopsis "Sugar light theme for SDDM")
(description "Sugar is extremely customizable and so sweet it will
probably cause you diabetes just from looking at it. Sweeten the login
experience for your users, your family and yourself")
(license license:gpl3+)))
(define-public lightdm
(package
(name "lightdm")