summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2017-12-19 14:47:00 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2017-12-19 14:47:00 +0300
commitf0e5c5481d6adb0a1239fb0b9d97addd29ed4328 (patch)
tree5715a5039de5055c5e42db7194650f170c32cf06
parentwigust: Add emacs-add-hooks. (diff)
downloadguix-wigust-f0e5c5481d6adb0a1239fb0b9d97addd29ed4328.tar.gz
wigust: Add emacs-benchmark-init.
* wigust/packages/emacs.scm (emacs-benchmark-init): New variable.
-rw-r--r--wigust/packages/emacs.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm
index 41bcaea..d43b720 100644
--- a/wigust/packages/emacs.scm
+++ b/wigust/packages/emacs.scm
@@ -2768,6 +2768,26 @@ being brutally moved to a blank slate) and is clearly highlighted with
respect to the rest of the buffer.")
(license license:gpl2+)))
+(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+)))
+
(define-public emacs-add-hooks
(package
(name "emacs-add-hooks")