diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-13 16:29:21 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-13 16:29:21 -0500 |
commit | 6dffced09ecda024e0884e352778c221ad066fd6 (patch) | |
tree | 1707e8d8df4d9c47317a39ab6abbfc2ca66a6c29 /gnu/packages/tmux.scm | |
parent | b603554ed044638dd40b6863d5dada59eefe03b8 (diff) | |
parent | e3196755e60ba7f1ed9d432e73f26a85e0c8893c (diff) |
Merge branch 'core-updates-frozen' into 'master'.
At last!
Diffstat (limited to 'gnu/packages/tmux.scm')
-rw-r--r-- | gnu/packages/tmux.scm | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm index 682fa9737a..76f80a4da6 100644 --- a/gnu/packages/tmux.scm +++ b/gnu/packages/tmux.scm @@ -55,8 +55,7 @@ "0pyhmipg6vxvxjk7mr410007qk98rh5q0mljvkdaisibz2j565am")))) (build-system gnu-build-system) (inputs - `(("libevent" ,libevent) - ("ncurses" ,ncurses))) + (list libevent ncurses)) (home-page "https://github.com/tmux/tmux/wiki") (synopsis "Terminal multiplexer") (description @@ -162,19 +161,14 @@ windows.") (base32 "068vy92f2668vrjvd3laqvxd48cmna66f2msdmwk2hm9qxklgf51")))) (build-system python-build-system) (propagated-inputs - `(("procps" ,procps))) ;tests need top + (list procps)) ;tests need top (native-inputs - `(("python-pytest" ,python-pytest) - ("tmux" ,tmux))) + (list python-pytest tmux)) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda _ - ;; Extend PYTHONPATH so the built package will be found. - (setenv "PYTHONPATH" - (string-append (getcwd) "/build/lib:" - (getenv "PYTHONPATH"))) ;; Fix <https://github.com/tmux-python/libtmux/issues/265>. (setenv "LANG" "en_US.utf8") ;; Skip tests that I suspect fail because of a change @@ -216,11 +210,9 @@ with live tmux sessions.") (invoke "tmux" "new-session" "-d") (invoke "make" "test")))))) (propagated-inputs - `(("python-libtmux" ,python-libtmux))) + (list python-libtmux)) (native-inputs - `(("python-coverage" ,python-coverage) - ("python-sphinx" ,python-sphinx) - ("tmux" ,tmux))) + (list python-coverage python-sphinx tmux)) (home-page "https://github.com/edouardklein/daemux") (synopsis "Start, stop, restart and check daemons via tmux") (description @@ -244,7 +236,7 @@ them, etc., by attaching to the corresponding pane in tmux.") "09fmnn1q76r1l4cv7clmfr3j9cjmd053kq238d0qj2i486948ivv")))) (build-system trivial-build-system) (inputs - `(("bash" ,bash))) + (list bash)) (arguments `(#:modules ((guix build utils)) #:builder |