gnu: Add emacs-memory-usage.

* gnu/packages/emacs-xyz.scm (emacs-memory-usage): New variable.

Change-Id: I964fc479b737712b88119c0a303ea53993e4c272
This commit is contained in:
Maxim Cournoyer 2024-03-30 17:45:57 -04:00
parent f19c871c3f
commit a855778abc
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 19 additions and 0 deletions

View File

@ -18384,6 +18384,25 @@ package.")
memoizing functions.")
(license license:unlicense)))
(define-public emacs-memory-usage
(package
(name "emacs-memory-usage")
(version "0.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://elpa.gnu.org/packages/memory-usage-"
version ".el"))
(sha256
(base32 "03qwb7sprdh1avxv3g7hhnhl41pwvnpxcpnqrikl7picy78h1gwj"))))
(build-system emacs-build-system)
(home-page "https://elpa.gnu.org/packages/memory-usage.html")
(synopsis "Analyze the memory usage of Emacs in various ways")
(description
"This package provides the command @code{memory-usage}, which lists all
buffers and how much memory they use.")
(license license:gpl3+)))
(define-public emacs-linum-relative
(package
(name "emacs-linum-relative")