aboutsummaryrefslogtreecommitdiffstats
path: root/oni
diff options
context:
space:
mode:
authorGravatar Tom Willemse2025-07-16 12:18:44 -0700
committerGravatar Tom Willemse2025-07-16 12:18:44 -0700
commit3c63e003a51705ae97652d0b641f5c85597ca24f (patch)
treeb8882f40d37ecfdf92ed1df7c9b6788df9a51b0d /oni
parentf4eb5ce4b6ecf70f4b142b1832da8f9f2a332204 (diff)
downloadnew-dotfiles-3c63e003a51705ae97652d0b641f5c85597ca24f.tar.gz
new-dotfiles-3c63e003a51705ae97652d0b641f5c85597ca24f.zip
packages/emacs: Fix packages without tests
Diffstat (limited to 'oni')
-rw-r--r--oni/packages/emacs.scm15
1 files changed, 13 insertions, 2 deletions
diff --git a/oni/packages/emacs.scm b/oni/packages/emacs.scm
index dc6d0da..6bdc92e 100644
--- a/oni/packages/emacs.scm
+++ b/oni/packages/emacs.scm
@@ -12,6 +12,7 @@
#:use-module (gnu packages emacs-xyz)
#:use-module ((gnu packages mail)
#:select (notmuch))
+ #:use-module (gnu packages emacs-build)
#:use-module (gnu packages ruby)
#:use-module (rosenthal packages tree-sitter)
#:use-module (guix build-system tree-sitter))
@@ -103,6 +104,8 @@ keywords.")
(sha256
(base32 "1z2l1mvrijwap83fpdlyfclk5aygfvmjaq7dayacj5nz5rggk0j6"))))
(build-system emacs-build-system)
+ (arguments
+ '(#:tests? #f))
(propagated-inputs
`(("emacs-s" ,emacs-s)))
(home-page "https://emacs-vs.github.io/docstr/")
@@ -292,6 +295,8 @@ custom pairs?)")
(sha256
(base32 "04ypamfnfhw7ba6zd1k62xaxq91qbzfxx4n5nld74w2cyv3s645f"))))
(build-system emacs-build-system)
+ (arguments
+ '(#:tests? #f))
(propagated-inputs
`(("emacs-flycheck" ,emacs-flycheck)
("emacs-relint" ,emacs-relint)))
@@ -709,6 +714,8 @@ new-theme for a while. I couldn't think of a name so I named it after him.")
(propagated-inputs
(list tree-sitter-php))
(build-system emacs-build-system)
+ (arguments
+ '(#:tests? #f))
(home-page "https://github.com/emacs-php/ts-php-mode")
(synopsis "A Tree-sitter based major mode for editing PHP codes")
(description "A Tree-sitter based major mode for editing PHP codes.")
@@ -752,6 +759,8 @@ source blocks.")
(sha256
(base32 "1sd65nhbcxr5r935z1ik3skz73kkpyr4r259nahn5gjvvww3if20"))))
(build-system emacs-build-system)
+ (arguments
+ '(#:tests? #f))
(propagated-inputs (list emacs-compat))
(home-page "https://github.com/emacs-php/php-runtime.el")
(synopsis "Language binding bridge to PHP")
@@ -779,7 +788,8 @@ short hand.")
(propagated-inputs (list emacs-compat emacs-php-mode emacs-php-runtime))
(arguments
'(#:include '("^phpstan.el$")
- #:exclude '()))
+ #:exclude '()
+ #:tests? #f))
(home-page "https://github.com/emacs-php/phpstan.el")
(synopsis "Interface to PHPStan")
(description
@@ -815,7 +825,8 @@ https://www.gnu.org/software/emacs/manual/html_node/emacs/Directory-Variables.ht
(propagated-inputs (list emacs-flycheck emacs-phpstan))
(arguments
'(#:include '("^flycheck-phpstan.el$")
- #:exclude '()))
+ #:exclude '()
+ #:tests? #f))
(home-page "https://github.com/emacs-php/phpstan.el")
(synopsis "Flycheck integration for PHPStan")
(description