mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 03:29:40 -05:00
gnu: Add abstractdark-sddm-theme.
* gnu/packages/display-managers.scm (abstractdark-sddm-theme): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7ce925fbe2
commit
f81cfc2f51
1 changed files with 26 additions and 0 deletions
|
@ -35,6 +35,7 @@ (define-module (gnu packages display-managers)
|
|||
#:use-module (guix download)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix build-system copy)
|
||||
#:use-module (guix build-system qt)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system glib-or-gtk)
|
||||
|
@ -142,6 +143,31 @@ (define-public sddm
|
|||
;; QML files are MIT licensed and images are CC BY 3.0.
|
||||
(license (list license:gpl2+ license:expat license:cc-by3.0))))
|
||||
|
||||
(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")
|
||||
|
|
Loading…
Reference in a new issue