gnu: tmux-themepack: Update to 1.1.0.
* gnu/packages/tmux.scm (tmux-themepack): Update to 1.1.0. [arguments]: Install only selected files. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
7273b66945
commit
efcd669c5a
1 changed files with 32 additions and 30 deletions
|
@ -67,19 +67,17 @@ continue running in the background, then later reattached.")
|
||||||
(license license:isc)))
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public tmux-themepack
|
(define-public tmux-themepack
|
||||||
(let ((commit "03a372866f7677f7fe63bcee140b48b9fd372c48")
|
|
||||||
(revision "1"))
|
|
||||||
(package
|
(package
|
||||||
(name "tmux-themepack")
|
(name "tmux-themepack")
|
||||||
(version (git-version "0.0.0" revision commit)) ; no version tags
|
(version "1.1.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/jimeh/tmux-themepack")
|
(url "https://github.com/jimeh/tmux-themepack")
|
||||||
(commit commit)))
|
(commit version)))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1d3k87mq5lca042jbap5kxskjy3kg79wjhhpnm6jacbn3anc67zl"))
|
"00dmd16ngyag3n46rbnl9vy82ih6g0y02yfwkid32a1c8vdbvb3z"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -91,12 +89,16 @@ continue running in the background, then later reattached.")
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (string-append
|
(let* ((out (string-append
|
||||||
(assoc-ref outputs "out")
|
(assoc-ref outputs "out")
|
||||||
"/share/" ,name "-" ,version)))
|
"/share/" ,name)))
|
||||||
(copy-recursively "." out)))))))
|
(copy-recursively "powerline" (string-append out "/powerline"))
|
||||||
|
(for-each (lambda (file) (copy-file file (string-append out "/" file)))
|
||||||
|
'("basic.tmuxtheme"
|
||||||
|
"default.tmuxtheme"
|
||||||
|
"themepack.tmux"))))))))
|
||||||
(home-page "https://github.com/jimeh/tmux-themepack")
|
(home-page "https://github.com/jimeh/tmux-themepack")
|
||||||
(synopsis "Collection of themes for Tmux")
|
(synopsis "Collection of themes for Tmux")
|
||||||
(description "A collection of various themes for Tmux.")
|
(description "A collection of various themes for Tmux.")
|
||||||
(license license:wtfpl2))))
|
(license license:wtfpl2)))
|
||||||
|
|
||||||
(define-public tmuxifier
|
(define-public tmuxifier
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue