Skip to content

Commit

Permalink
fix: don't use :ensure-system-package (not available on Emacs 28)
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed May 16, 2024
1 parent ebcaecd commit a0b672b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions modules/me-tools.el
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,7 @@
(use-package envrc
:straight t
:hook (minemacs-first-file . envrc-global-mode)
:when (not os/win)
:ensure-system-package direnv
:when (and (not os/win) (executable-find "direnv"))
:custom
(envrc-debug minemacs-debug-p)
:config
Expand All @@ -200,7 +199,7 @@

(use-package pet
:straight t
:ensure-system-package (dasel sqlite3)
:when (and (or (executable-find "dasel") (executable-find "yq")) (executable-find "sqlite3"))
:config
(+add-hook! python-base-mode :depth -30
(setq-local python-shell-interpreter (pet-executable-find "python")
Expand Down

0 comments on commit a0b672b

Please sign in to comment.