guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add emacs-dired-hacks.


From: Alex Kost
Subject: 01/01: gnu: Add emacs-dired-hacks.
Date: Sat, 24 Jun 2017 14:56:55 -0400 (EDT)

alezost pushed a commit to branch master
in repository guix.

commit 730c0790fc5b3285cd0f1983804e2d76c37cb542
Author: Oleg Pykhalov <address@hidden>
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 <address@hidden>
---
 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 <address@hidden>
 ;;; Copyright © 2017 Feng Shu <address@hidden>
 ;;; Copyright © 2017 Jan Nieuwenhuizen <address@hidden>
+;;; Copyright © 2017 Oleg Pykhalov <address@hidden>
 ;;;
 ;;; 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:
address@hidden
address@hidden dired-avfs
address@hidden dired-columns
address@hidden dired-filter
address@hidden dired-hacks-utils
address@hidden dired-images
address@hidden dired-list
address@hidden dired-narrow
address@hidden dired-open
address@hidden dired-rainbow
address@hidden dired-ranger
address@hidden dired-subtree
address@hidden dired-tagsistant
address@hidden itemize\n")
+      (license license:gpl3+))))



reply via email to

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