guix-commits
[Top][All Lists]
Advanced

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

54/88: gnu: Add emacs-benchmark-init.


From: Oleg Pykhalov
Subject: 54/88: gnu: Add emacs-benchmark-init.
Date: Wed, 2 May 2018 13:21:14 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit c43c0823c738a405bbe56a6769ce781b7d2d97f6
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 19:06:22 2018 +0300

    gnu: Add emacs-benchmark-init.
    
    * gnu/packages/emacs.scm (emacs-benchmark-init): New public variable.
---
 gnu/packages/emacs.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index c68e6bc..b07d87e 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -9394,3 +9394,23 @@ and doesn't require memorisation of commands.
 requested.  It's a great way of exploring list, string and arithmetic
 functions.")
     (license license:gpl3+)))
+
+(define-public emacs-benchmark-init
+  (package
+    (name "emacs-benchmark-init")
+    (version "1.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/dholm/benchmark-init-el/archive/";
+                    version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0szyqr4nncwz4vd5gww1vz31kf9r2lx25p4d0d09pm35974x53kz"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/dholm/benchmark-init-el";)
+    (synopsis "Benchmark Emacs @code{require} and @code{load} calls")
+    (description "@code{benchmark-init} provides a way to keep track of where
+time is being spent during Emacs startup in order to optimize startup time.")
+    (license license:gpl3+)))



reply via email to

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