diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-05-25 00:25:15 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-05-25 00:25:15 +0200 |
commit | 57df83e07d4b5e78d9a54c1a88d05b4a9ed65714 (patch) | |
tree | 76684e63965e9ad6e37d9d45bc3159e6c9782cd0 /gnu/packages/tmux.scm | |
parent | 43d9ed7792808638eabb43aa6133f1d6186c520b (diff) | |
parent | 136b7d81f0eb713783e9ea7cf7f260a2b6252dfd (diff) | |
download | patches-57df83e07d4b5e78d9a54c1a88d05b4a9ed65714.tar patches-57df83e07d4b5e78d9a54c1a88d05b4a9ed65714.tar.gz |
Merge branch 'staging' into core-updates
Diffstat (limited to 'gnu/packages/tmux.scm')
-rw-r--r-- | gnu/packages/tmux.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm index 91d0af6313..c1e136915b 100644 --- a/gnu/packages/tmux.scm +++ b/gnu/packages/tmux.scm @@ -23,7 +23,7 @@ ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu packages tmux) - #:use-module (guix licenses) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) @@ -58,7 +58,7 @@ windows), each running a separate program, to be created, accessed, and controlled from a single screen. tmux may be detached from a screen and continue running in the background, then later reattached.") - (license isc))) + (license license:isc))) (define-public tmux-themepack (let ((commit "03a372866f7677f7fe63bcee140b48b9fd372c48") @@ -90,8 +90,7 @@ continue running in the background, then later reattached.") (home-page "https://github.com/jimeh/tmux-themepack") (synopsis "Collection of themes for Tmux") (description "A collection of various themes for Tmux.") - (license - (non-copyleft "http://www.wtfpl.net/txt/copying/"))))) + (license license:wtfpl2)))) (define-public tmuxifier (package @@ -136,7 +135,7 @@ continue running in the background, then later reattached.") @code{layout} files, which are simple shell scripts where you use the tmux command and helper commands provided by tmuxifier to manage Tmux sessions and windows.") - (license expat))) + (license license:expat))) (define-public tmux-xpanes (package @@ -183,4 +182,4 @@ following features: @item Display pane title on each pane. @item Generate command lines from standard input (Pipe mode). @end itemize") - (license expat))) + (license license:expat))) |