gnu: Use license: prefix in tmux.scm.
* gnu/packages/tmux.scm Use license: prefix in tmux.scm. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
492e3a7a76
commit
41ee377305
|
@ -23,7 +23,7 @@
|
||||||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(define-module (gnu packages tmux)
|
(define-module (gnu packages tmux)
|
||||||
#:use-module (guix licenses)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
windows), each running a separate program, to be created, accessed, and
|
windows), each running a separate program, to be created, accessed, and
|
||||||
controlled from a single screen. tmux may be detached from a screen and
|
controlled from a single screen. tmux may be detached from a screen and
|
||||||
continue running in the background, then later reattached.")
|
continue running in the background, then later reattached.")
|
||||||
(license isc)))
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public tmux-themepack
|
(define-public tmux-themepack
|
||||||
(let ((commit "03a372866f7677f7fe63bcee140b48b9fd372c48")
|
(let ((commit "03a372866f7677f7fe63bcee140b48b9fd372c48")
|
||||||
|
@ -136,7 +136,7 @@ continue running in the background, then later reattached.")
|
||||||
@code{layout} files, which are simple shell scripts where you use the tmux
|
@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
|
command and helper commands provided by tmuxifier to manage Tmux sessions and
|
||||||
windows.")
|
windows.")
|
||||||
(license expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public tmux-xpanes
|
(define-public tmux-xpanes
|
||||||
(package
|
(package
|
||||||
|
@ -183,4 +183,4 @@ following features:
|
||||||
@item Display pane title on each pane.
|
@item Display pane title on each pane.
|
||||||
@item Generate command lines from standard input (Pipe mode).
|
@item Generate command lines from standard input (Pipe mode).
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(license expat)))
|
(license license:expat)))
|
||||||
|
|
Reference in New Issue