emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/detached 5315de4e41 1/2: Remove unused guix.scm file


From: ELPA Syncer
Subject: [elpa] externals/detached 5315de4e41 1/2: Remove unused guix.scm file
Date: Fri, 2 Sep 2022 07:57:31 -0400 (EDT)

branch: externals/detached
commit 5315de4e41bbd415027eb04498a5d0bad323c784
Author: Niklas Eklund <niklas.eklund@posteo.net>
Commit: Niklas Eklund <niklas.eklund@posteo.net>

    Remove unused guix.scm file
---
 guix.scm | 53 -----------------------------------------------------
 1 file changed, 53 deletions(-)

diff --git a/guix.scm b/guix.scm
deleted file mode 100644
index 070984ea50..0000000000
--- a/guix.scm
+++ /dev/null
@@ -1,53 +0,0 @@
-;;; guix.scm -- Guix package definition
-
-(use-modules
- (guix packages)
- (guix git-download)
- (guix gexp)
- (guix build-system gnu)
- ((guix licenses) #:prefix license:)
- (guix build-system emacs)
- (gnu packages emacs-xyz)
- (gnu packages screen)
- (ice-9 popen)
- (ice-9 rdelim))
-
-(define %source-dir (dirname (current-filename)))
-
-(define %git-commit
-  (read-string (open-pipe "git show HEAD | head -1 | cut -d ' ' -f2" 
OPEN_READ)))
-
-(define-public emacs-detached
-  (package
-    (name "emacs-detached")
-    (version "0.7")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://git.sr.ht/~niklaseklund/detached.el";)
-                    (commit version)))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "160h60vrpxslw6y290ndc065cc75dab58aq7kjqash94vkifnii2"))))
-    (arguments
-     (list
-      #:tests? #t
-      #:test-command #~(list "ert-runner")))
-    (build-system emacs-build-system)
-    (native-inputs (list emacs-ert-runner))
-    (inputs (list dtach))
-    (home-page "https://git.sr.ht/~niklaseklund/detached.el";)
-    (synopsis "A package to launch, and manage, detached processes")
-    (description
-     "The detached package allows users to run processes
-detached from Emacs.  It provides integration with multiple built-in modes, as
-well as providing an interface to attach and interact with the processes.")
-    (license license:gpl3+)))
-
-(package
-  (inherit emacs-detached)
-  (name "emacs-detached-git")
-  (version (git-version (package-version emacs-detached) "HEAD" %git-commit))
-  (source (local-file %source-dir
-                      #:recursive? #t)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]