From efcd669c5ad2cb471e583172c5f54a205b3dcaa5 Mon Sep 17 00:00:00 2001 From: Matthew James Kraai Date: Mon, 5 Jul 2021 03:22:32 -0700 Subject: gnu: tmux-themepack: Update to 1.1.0. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/tmux.scm (tmux-themepack): Update to 1.1.0. [arguments]: Install only selected files. Signed-off-by: Ludovic Courtès --- gnu/packages/tmux.scm | 62 ++++++++++++++++++++++++++------------------------- 1 file changed, 32 insertions(+), 30 deletions(-) (limited to 'gnu/packages/tmux.scm') diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm index 09040e106d..7dc977d820 100644 --- a/gnu/packages/tmux.scm +++ b/gnu/packages/tmux.scm @@ -67,36 +67,38 @@ (define-public tmux (license license:isc))) (define-public tmux-themepack - (let ((commit "03a372866f7677f7fe63bcee140b48b9fd372c48") - (revision "1")) - (package - (name "tmux-themepack") - (version (git-version "0.0.0" revision commit)) ; no version tags - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jimeh/tmux-themepack") - (commit commit))) - (sha256 - (base32 - "1d3k87mq5lca042jbap5kxskjy3kg79wjhhpnm6jacbn3anc67zl")) - (file-name (git-file-name name version)))) - (build-system gnu-build-system) - (arguments - `(#:tests? #f ; no test suite - #:phases (modify-phases %standard-phases - (delete 'configure) - (delete 'build) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (string-append - (assoc-ref outputs "out") - "/share/" ,name "-" ,version))) - (copy-recursively "." out))))))) - (home-page "https://github.com/jimeh/tmux-themepack") - (synopsis "Collection of themes for Tmux") - (description "A collection of various themes for Tmux.") - (license license:wtfpl2)))) + (package + (name "tmux-themepack") + (version "1.1.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jimeh/tmux-themepack") + (commit version))) + (sha256 + (base32 + "00dmd16ngyag3n46rbnl9vy82ih6g0y02yfwkid32a1c8vdbvb3z")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no test suite + #:phases (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (string-append + (assoc-ref outputs "out") + "/share/" ,name))) + (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") + (synopsis "Collection of themes for Tmux") + (description "A collection of various themes for Tmux.") + (license license:wtfpl2))) (define-public tmuxifier (package -- cgit v1.2.3 From c4918b54bbeffbdb6581590d2c869a54dbc4b936 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 23 Jul 2021 16:41:52 +0200 Subject: gnu: tmux-themepack: Tweak description. * gnu/packages/tmux.scm (tmux-themepack)[description]: Tweak. --- gnu/packages/tmux.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gnu/packages/tmux.scm') diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm index 7dc977d820..682fa9737a 100644 --- a/gnu/packages/tmux.scm +++ b/gnu/packages/tmux.scm @@ -97,7 +97,8 @@ (define-public tmux-themepack "themepack.tmux")))))))) (home-page "https://github.com/jimeh/tmux-themepack") (synopsis "Collection of themes for Tmux") - (description "A collection of various themes for Tmux.") + (description + "This package provides several themes for Tmux, the terminal multiplexer.") (license license:wtfpl2))) (define-public tmuxifier -- cgit v1.2.3