mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: emacs-tree-inspector: Update to 0.4.
* gnu/packages/emacs-xyz.scm (emacs-tree-inspector): Update to 0.4. [arguments]<#:phases>: Require `subr-x' library in order to prevent a test failure (and probably a run-time failure) when `hash-table-keys' is called.
This commit is contained in:
parent
b6f274eeac
commit
dfeac7e477
1 changed files with 14 additions and 4 deletions
|
@ -794,10 +794,10 @@ (define-public emacs-inspector
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-tree-inspector
|
(define-public emacs-tree-inspector
|
||||||
(let ((commit "495ef1874fba9d75842087f4acf0ebd75cf09e97"))
|
(let ((commit "bbb8d2dfe84fbf857fcc1579de5a1324b09a877e"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-tree-inspector")
|
(name "emacs-tree-inspector")
|
||||||
(version "0.3")
|
(version "0.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -806,7 +806,7 @@ (define-public emacs-tree-inspector
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"011pk5gr2j9m4qnv70qz63bh58ga72nqahv0zkf2qpbr2a5df09c"))))
|
"01ad4r97hfr9nndbifyggscb5108y7h2qm95jsmh5b9qgzqm39nx"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -814,7 +814,17 @@ (define-public emacs-tree-inspector
|
||||||
#:test-command #~(list "emacs" "-Q" "--batch"
|
#:test-command #~(list "emacs" "-Q" "--batch"
|
||||||
"-L" "."
|
"-L" "."
|
||||||
"-l" "tree-inspector-tests.el"
|
"-l" "tree-inspector-tests.el"
|
||||||
"-f" "ert-run-tests-batch-and-exit")))
|
"-f" "ert-run-tests-batch-and-exit")
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-library-loading
|
||||||
|
;; The library calls `hash-table-keys', which is not
|
||||||
|
;; auto-loaded. Explicitly require `subr-x', where it is
|
||||||
|
;; defined.
|
||||||
|
(lambda _
|
||||||
|
(substitute* "tree-inspector.el"
|
||||||
|
(("\\(require 'cl-lib\\)" line)
|
||||||
|
(string-append line "(require 'subr-x)"))))))))
|
||||||
(propagated-inputs (list emacs-treeview))
|
(propagated-inputs (list emacs-treeview))
|
||||||
(home-page "https://github.com/mmontone/emacs-tree-inspector")
|
(home-page "https://github.com/mmontone/emacs-tree-inspector")
|
||||||
(synopsis "Inspection tool for Emacs Lisp objects that uses a tree view")
|
(synopsis "Inspection tool for Emacs Lisp objects that uses a tree view")
|
||||||
|
|
Loading…
Reference in a new issue