mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-org-recent-headings: Fix tests.
* gnu/packages/emacs-xyz.scm (emacs-org-recent-headings) [source]: Remove makem script. [arguments]{phases}: Add phase 'inject-makem. [native-inputs]: Add makem-minimal. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
708de6ba5a
commit
4bae8ee67a
1 changed files with 12 additions and 1 deletions
|
@ -26215,8 +26215,19 @@ a heuristic based on frequency and recency.")
|
|||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1y11rlnhi36lzhc1cagninv6hlcwbvj88xfr0g0xzpbzy7hys021"))))
|
||||
(base32 "1y11rlnhi36lzhc1cagninv6hlcwbvj88xfr0g0xzpbzy7hys021"))
|
||||
;; Contents of makem package, but no tests.
|
||||
(snippet #~(for-each delete-file '("makem.sh" "Makefile")))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'inject-makem
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(symlink (search-input-file inputs "/bin/makem.sh")
|
||||
"makem.sh"))))))
|
||||
(native-inputs
|
||||
(list makem-minimal))
|
||||
(propagated-inputs
|
||||
(list emacs-dash emacs-frecency emacs-helm emacs-org emacs-s))
|
||||
(home-page "https://github.com/alphapapa/org-recent-headings")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue