diff options
author | EuAndreh <eu@euandre.org> | 2023-07-16 11:27:26 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-07-16 11:27:26 -0300 |
commit | 02284356da194df1c428bec367a8aab824ac893d (patch) | |
tree | 2fd4ee1d55ec0a436c42319dcdad99a0b8b5d2b1 | |
parent | bin/gc: Remove vcs GC (diff) | |
download | dotfiles-02284356da194df1c428bec367a8aab824ac893d.tar.gz dotfiles-02284356da194df1c428bec367a8aab824ac893d.tar.xz |
etc/guix/home.scm: Use tmux-plugin-continuum from upstream
-rw-r--r-- | etc/guix/home.scm | 45 |
1 files changed, 2 insertions, 43 deletions
diff --git a/etc/guix/home.scm b/etc/guix/home.scm index ed55ac1..1e040fd 100644 --- a/etc/guix/home.scm +++ b/etc/guix/home.scm @@ -121,47 +121,6 @@ Alpine Linux, but now used by several other distributions as well.") (license licenses:gpl2))) -;; Sent upstream as: -;; https://issues.guix.gnu.org/61823 -(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 licenses:expat))) - (define-public hunspell-iconv (package (inherit hunspell) @@ -367,6 +326,8 @@ left it off the last time it was used.") td wget tmux + tmux-plugin-resurrect + tmux-plugin-continuum texinfo gnupg rsync @@ -664,7 +625,6 @@ left it off the last time it was used.") nano patch youtube-dl - tmux-plugin-resurrect ;; for compiling netsurf glib:bin @@ -722,7 +682,6 @@ left it off the last time it was used.") (list ;; cmucl abuild apk-tools - tmux-plugin-continuum hunspell-iconv (hunspell-dictionary-utf8 "en") (hunspell-dictionary-utf8 "pt") |