From ec51862795bc3f746cd1cb6e7472826a204ad1f2 Mon Sep 17 00:00:00 2001 From: Niklas Eklund Date: Thu, 13 Jan 2022 18:19:57 +0100 Subject: [PATCH] gnu: Add emacs-dtache package. --- gnu/packages/emacs-xyz.scm | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f7022d1f34..5020c4ba43 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -78,7 +78,7 @@ ;;; Copyright © 2020 Eric Bavier ;;; Copyright © 2020, 2021 Morgan Smith ;;; Copyright © 2020 Peng Mei Yu -;;; Copyright © 2020, 2021 Niklas Eklund +;;; Copyright © 2020, 2021, 2022 Niklas Eklund ;;; Copyright © 2020 Marco Grassi ;;; Copyright © 2020 Tomás Ortín Fernández ;;; Copyright © 2020, 2021 Zhu Zihao @@ -214,6 +214,7 @@ (define-module (gnu packages emacs-xyz) #:use-module (gnu packages password-utils) #:use-module (gnu packages pulseaudio) #:use-module (gnu packages sphinx) + #:use-module (gnu packages screen) #:use-module (gnu packages xdisorg) #:use-module (gnu packages shells) #:use-module (gnu packages shellutils) @@ -23366,6 +23367,40 @@ (define-public emacs-cmake-font-lock according to their use.") (license license:gpl3+)))) +(define-public emacs-dtache + (package + (name "emacs-dtache") + (version "0.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/niklaseklund/dtache") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0f2yxrqfkslif2y88x9vlpshadifppxw6yl1rrf1qzfjy6cv144n")))) + (native-inputs (list emacs-ert-runner)) + (inputs (list dtach)) + (arguments + `(#:test-command '("ert-runner") + #:phases + ,#~(modify-phases %standard-phases + (add-before 'install 'install-dtache-env + (lambda _ + (let ((bin (string-append #$output "/bin"))) + (mkdir-p bin) + (copy-file "dtache-env" + (string-append bin "/dtache-env")))))))) + (build-system emacs-build-system) + (home-page "https://gitlab.com/niklaseklund/dtache") + (synopsis "Run and interact with detached shell commands") + (description + "The dtache package allows users to run shell commands +detached from Emacs. These commands are launched in sessions, using the +program dtach.") + (license license:gpl3+))) + (define-public emacs-dtrt-indent (package (name "emacs-dtrt-indent") -- 2.32.0