aboutsummaryrefslogtreecommitdiff
path: root/etc/teams
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2023-11-03 16:40:28 +0100
committerRicardo Wurmus <rekado@elephly.net>2023-11-03 22:49:12 +0100
commit268cf54fbf8840319e8dd666dbc2baff0b2ee357 (patch)
tree4506babf4eb027bcd27f9534e557662fb6a3b451 /etc/teams
parentfed0d240b521af310d0d09b1e7476c1e290a1cc9 (diff)
downloadguix-268cf54fbf8840319e8dd666dbc2baff0b2ee357.tar.gz
guix-268cf54fbf8840319e8dd666dbc2baff0b2ee357.zip
gnu: r-barcodetrackr: Update to 1.10.0.
* gnu/packages/bioconductor.scm (r-barcodetrackr): Update to 1.10.0. Change-Id: Ia3ad0d4069441dd9a0b6a93f26e4791eae3ab408
Diffstat (limited to 'etc/teams')
0 files changed, 0 insertions, 0 deletions
(modify-phases %standard-phases (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (install-file "dtach" (string-append out "/bin")) (install-file "dtach.1" (string-append out "/share/man/man1")) #t)))) ;; No check target. #:tests? #f)) (home-page "https://dtach.sourceforge.net/") (synopsis "Emulates the detach feature of screen") (description "dtach is a tiny program that emulates the detach feature of screen, allowing you to run a program in an environment that is protected from the controlling terminal and attach to it later.") (license gpl2+))) (define-public byobu (package (name "byobu") (version "5.133") (source (origin (method url-fetch) (uri (string-append "https://launchpad.net/byobu/trunk/" version "/+download/byobu_" version ".orig.tar.gz")) (sha256 (base32 "0qvmmdnvwqbgbhn5c8asmrmjhclcl029py2d2zvmd7h5ij7s93jd")) (patches (search-patches "byobu-writable-status.patch")))) (build-system gnu-build-system) (inputs `(("bash" ,bash-minimal) ; for wrap-program ("python" ,python-wrapper) ; for config and session GUIs ("python-newt" ,newt "python"))) (arguments `(#:phases (modify-phases %standard-phases (add-before 'configure 'provide-locale (lambda* (#:key inputs #:allow-other-keys) (let ((libc (assoc-ref inputs "libc"))) ; implicit input (substitute* "usr/bin/byobu.in" (("locale") (string-append libc "/bin/locale"))) #t))) (add-after 'install 'wrap-python-scripts (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((python (search-input-file inputs "/bin/python")) (out (assoc-ref outputs "out")) (config (string-append out "/bin/byobu-config")) (select (string-append out "/bin/byobu-select-session"))) (wrap-program config `("BYOBU_PYTHON" = (,python)) `("GUIX_PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH")))) (wrap-program select `("BYOBU_PYTHON" = (,python))) #t)))))) (home-page "https://byobu.org/") (synopsis "Text-based window manager and terminal multiplexer") (description "Byobu is a Japanese term for decorative, multi-panel screens that serve as folding room dividers. The Byobu software includes an enhanced profile, configuration utilities, and system status notifications for the GNU Screen window manager as well as the Tmux terminal multiplexer.") (license gpl3+))) (define-public reptyr (package (name "reptyr") (version "0.10.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/nelhage/reptyr") (commit (string-append "reptyr-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "03k95bf7b46g89j0hgfvra9d512z0ha7vw9358h9j67h9b5bylwf")))) (build-system gnu-build-system) (arguments (list #:tests? #f ; no tests #:make-flags #~(list (string-append "CC=" #$(cc-for-target)) (string-append "PREFIX=" #$output) (string-append "BASHCOMPDIR=" #$output "/etc/bash_completion.d")) #:phases #~(modify-phases %standard-phases (delete 'configure)))) ; no configure script (home-page "https://github.com/nelhage/reptyr") (synopsis "Tool for reparenting a running program to a new terminal") (description "reptyr is a utility for taking an existing running program and attaching it to a new terminal. Started a long-running process over @code{ssh}, but have to leave and don't want to interrupt it? Just start a @code{screen}, use reptyr to grab it, and then kill the @code{ssh} session and head on home.") ;; Reptyr currently does not support mips. (supported-systems (delete "mips64el-linux" %supported-systems)) (license expat)))