diff options
author | Leo Famulari <leo@famulari.name> | 2017-04-25 14:27:03 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-04-25 14:27:03 -0400 |
commit | 39d2d9a7abdde28830c39c1128986cad539c081d (patch) | |
tree | 980846ee567066b80e259e35bd1f39c388db583c /gnu/packages/screen.scm | |
parent | 803067939718be1c17a40fa33a75eb65a3cece2f (diff) | |
parent | 31c374e0816fc183e177d93257f90b3c02d517af (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/screen.scm')
-rw-r--r-- | gnu/packages/screen.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/screen.scm b/gnu/packages/screen.scm index 5ab5351e35..1bdfcd0110 100644 --- a/gnu/packages/screen.scm +++ b/gnu/packages/screen.scm @@ -21,6 +21,7 @@ ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu packages screen) + #:use-module (srfi srfi-1) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) @@ -170,6 +171,7 @@ window manager as well as the Tmux terminal multiplexer.") 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)) + ;; Reptyr currently does not support mips or aarch64. + (supported-systems (fold delete %supported-systems + '("mips64el-linux" "aarch64-linux"))) (license expat))) |