diff options
author | Cayetano Santos <csantosb@inventati.org> | 2025-07-20 11:36:26 +0200 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2025-07-24 15:42:44 +0800 |
commit | 286851654d56572d9301ebef8ca907a51a93cf8c (patch) | |
tree | a045359c0b60c7e5d569955f8a403b80b412dba3 | |
parent | 6ea73dc0059414db3a5e90490a8bbe29b110196a (diff) |
gnu: Add emacs-inspirehep.
* gnu/packages/emacs-xyz.scm (emacs-inspirehep): New variable.
Change-Id: Ia2ea76c13d0cfb7d5496d56d5fb4f0b2fdedf2d7
Signed-off-by: Hilton Chain <hako@ultrarare.space>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 023471b3cf..3d7e3c5f64 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1040,6 +1040,35 @@ configuration language which makes it trivial to write your own themes.") Common Lisp or Smalltalk, but for Emacs Lisp.") (license license:gpl3+)))) +(define-public emacs-inspirehep + ;; No tags or releases. + (let ((commit "9675ef63833d3f876e2f1dd8f7a8d91eef420aab") + (revision "0")) + (package + (name "emacs-inspirehep") + (version (git-version "0.0.1" revision commit)) + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://codeberg.org/rahguzar/inspirehep.el/") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1rjclz658vca3mlwhil9kz4ffk382l1csrh7wr8ch63babmc7kzy")))) + (build-system emacs-build-system) + (arguments (list #:tests? #f)) ;no tests + (propagated-inputs + (list emacs-map emacs-pdf-tools emacs-companion-mode)) + (home-page "https://codeberg.org/rahguzar/inspirehep.el/") + (synopsis "Search literature references for high energy physics") + (description + "This package provides an Emacs interface to the online service +@uref{https://inspirehep.net/, Inspirehep}") + (license license:gpl3+)))) + (define-public emacs-treebundel (package (name "emacs-treebundel") |