aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-02-26 17:23:41 -0300
committerEuAndreh <eu@euandre.org>2023-02-26 17:23:43 -0300
commit75e2ec0e7bdc04fa69a77e09fe355b893e7b278b (patch)
tree056439d13ba7b9a55f59a9400e62f06f485044e4
parentqueue.scm: Remove unused remhind package and its dependency python-xdg (diff)
downloadpackage-repository-75e2ec0e7bdc04fa69a77e09fe355b893e7b278b.tar.gz
package-repository-75e2ec0e7bdc04fa69a77e09fe355b893e7b278b.tar.xz
queue.scm: Remove tmux-plugin-continuum package
Inlined directly into $XDG_CONFIG_HOME/guix/home.scm. Since all of my uses of this package also share this file, there's no need to keep it in a channel, only packages that are shared by other machines, such as servers.
-rw-r--r--src/xyz/euandreh/queue.scm39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/xyz/euandreh/queue.scm b/src/xyz/euandreh/queue.scm
index 5789bbc..85e126d 100644
--- a/src/xyz/euandreh/queue.scm
+++ b/src/xyz/euandreh/queue.scm
@@ -419,45 +419,6 @@ collections.OrderedDict that works in Python 2.4-2.6.")
(description "We have made you a wrapper you can't refuse")
(license #f)))
-(define-public tmux-plugin-continuum
- (package
- (name "tmux-plugin-continuum")
- (version "3e4bc35da41f956c873aea716c97555bf1afce5d")
- (source
- (origin
- (method git-fetch)
- (uri
- (git-reference
- (url "https://github.com/tmux-plugins/tmux-continuum/")
- (commit version)))
- (sha256
- (base32 "1py8qfs2f93hkxhk039m813bjgcs5k54si662gx05g3czqy06pb7"))))
- (build-system trivial-build-system)
- (arguments
- `(#:modules ((guix build utils))
- #:builder
- (begin
- (use-modules (guix build utils))
- (let ((out (string-append %output "/share/tmux-plugins/continuum/")))
- (mkdir-p out)
- (copy-recursively (assoc-ref %build-inputs "source")
- out)))))
- (synopsis "Continous saving of tmux environment")
- (description
- "Features:
-
-@itemize
-@item continuous saving of tmux environment
-@item automatic tmux start when computer/server is turned on
-@item automatic restore when tmux is started
-@end itemize
-
-Together, these features enable uninterrupted tmux usage. No matter the
-computer or server restarts, if the machine is on, tmux will be there how you
-left it off the last time it was used.")
- (home-page "https://github.com/tmux-plugins/tmux-continuum/")
- (license license:expat)))
-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;