alezost pushed a commit to branch master
in repository guix.

commit 730c0790fc5b3285cd0f1983804e2d76c37cb542
Author: Oleg Pykhalov <[email protected]>
Date:   Sat Jun 10 02:59:25 2017 +0300

    gnu: Add emacs-dired-hacks.
    
    * gnu/packages/emacs.scm (emacs-dired-hacks): New variable.
    
    Co-authored-by: Alex Kost <[email protected]>
---
 gnu/packages/emacs.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 4d8a230..08bda5a 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -26,6 +26,7 @@
 ;;; Copyright © 2017 George Clemmer <[email protected]>
 ;;; Copyright © 2017 Feng Shu <[email protected]>
 ;;; Copyright © 2017 Jan Nieuwenhuizen <[email protected]>
+;;; Copyright © 2017 Oleg Pykhalov <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4896,3 +4897,45 @@ running a customisable handler command (@code{ignore} by 
default). ")
 from within Emacs.  Restclient runs queries from a plan-text query sheet,
 displays results pretty-printed in XML or JSON with @code{restclient-mode}")
       (license license:public-domain))))
+
+(define-public emacs-dired-hacks
+  (let ((commit "eda68006ce73bbf6b9b995bfd70d08bec8cade36")
+        (revision "1"))
+    (package
+      (name "emacs-dired-hacks")
+      (version (string-append "0.0.1-" revision "."
+                              (string-take commit 7)))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/Fuco1/dired-hacks.git";)
+                      (commit commit)))
+                (file-name (string-append name "-" version "-checkout"))
+                (sha256
+                 (base32
+                  "1w7ssl9zssn5rcha6apf4h8drkd02k4xgvs203bdbqyqp9wz9brx"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-dash" ,emacs-dash)
+         ("emacs-f" ,emacs-f)
+         ("emacs-s" ,emacs-s)))
+      (home-page "https://github.com/Fuco1/dired-hacks";)
+      (synopsis
+       "Collection of useful dired additions")
+      (description
+       "Collection of Emacs dired mode additions:
+@itemize
+@item dired-avfs
+@item dired-columns
+@item dired-filter
+@item dired-hacks-utils
+@item dired-images
+@item dired-list
+@item dired-narrow
+@item dired-open
+@item dired-rainbow
+@item dired-ranger
+@item dired-subtree
+@item dired-tagsistant
+@end itemize\n")
+      (license license:gpl3+))))

Reply via email to