guix-commits
[Top][All Lists]
Advanced

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

01/09: gnu: Add emacs-trashed.


From: guix-commits
Subject: 01/09: gnu: Add emacs-trashed.
Date: Tue, 28 Apr 2020 05:50:24 -0400 (EDT)

ambrevar pushed a commit to branch master
in repository guix.

commit ef3cc2d8833b0ec46b26c32413245ef8a8086e66
Author: Pierre Neidhardt <address@hidden>
AuthorDate: Tue Apr 28 10:37:10 2020 +0200

    gnu: Add emacs-trashed.
    
    * gnu/packages/emacs-xyz.scm (emacs-trashed): New variable.
---
 gnu/packages/emacs-xyz.scm | 25 ++++++++++++++++++++++++-
 1 file changed, 24 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index a0275cb..0ae3f72 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -34,7 +34,7 @@
 ;;; Copyright © 2017, 2018, 2019 Maxim Cournoyer <address@hidden>
 ;;; Copyright © 2018 Sohom Bhattacharjee <address@hidden>
 ;;; Copyright © 2018, 2019 Mathieu Lirzin <address@hidden>
-;;; Copyright © 2018, 2019 Pierre Neidhardt <address@hidden>
+;;; Copyright © 2018, 2019, 2020 Pierre Neidhardt <address@hidden>
 ;;; Copyright © 2018, 2019 Tim Gesthuizen <address@hidden>
 ;;; Copyright © 2018, 2019 Jack Hill <address@hidden>
 ;;; Copyright © 2018 Pierre-Antoine Rouby <address@hidden>
@@ -22585,3 +22585,26 @@ ASCII UML sequence diagrams in Emacs, which can be 
embedded in source code,
 comments or emails.")
       (license license:gpl3+))))
 
+(define-public emacs-trashed
+  (package
+    (name "emacs-trashed")
+    (version "1.9.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/shingo256/trashed/";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "13grdi12iwlw4fiphdfmvclfpbr6ajlgfbfyi7v41z8k3rxz4ypz"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/shingo256/trashed/";)
+    (synopsis "View and edit system trash can in Emacs")
+    (description "Open, view, browse, restore or permanently delete trashed
+files or directories in trash can with Dired-like look and feel.  The trash
+can has to be compliant with freedesktop.org. In Emacs, you can trash files by
+deleting them with @code{(setq delete-by-moving-to-trash t)}.  This package
+provides a simple but convenient user interface to manage those trashed
+files.")
+    (license license:gpl3+)))



reply via email to

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