mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: Add moka-icon-theme.
* gnu/packages/gnome.scm (moka-icon-theme): New variable.
This commit is contained in:
parent
813f814a29
commit
9987c57c74
1 changed files with 35 additions and 0 deletions
|
@ -5215,3 +5215,38 @@ (define-public arc-theme
|
||||||
(home-page "https://github.com/horst3180/arc-theme")
|
(home-page "https://github.com/horst3180/arc-theme")
|
||||||
;; No "or later" language found.
|
;; No "or later" language found.
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
(define-public moka-icon-theme
|
||||||
|
(package
|
||||||
|
(name "moka-icon-theme")
|
||||||
|
(version "5.3.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://github.com/moka-project"
|
||||||
|
"/moka-icon-theme/archive/v"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1lnk7p8dsd9xh6cgz5krvlcr457w8yl4m6p6s5c2g5narsjswzrm"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'patch-makefile.am
|
||||||
|
(lambda _
|
||||||
|
(substitute* '("Makefile.am")
|
||||||
|
(("\\$\\(DESTDIR\\)/usr/share")
|
||||||
|
"$(datadir)"))
|
||||||
|
#t))
|
||||||
|
(add-after 'patch-makefile.am 'bootstrap
|
||||||
|
(lambda _
|
||||||
|
(zero? (system* "autoreconf" "-vif")))))))
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)))
|
||||||
|
(synopsis "Moka icon theme")
|
||||||
|
(description "Moka is a stylized desktop icon set, designed to be clear,
|
||||||
|
simple and consistent.")
|
||||||
|
(home-page "http://snwh.org/moka")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
Loading…
Reference in a new issue