mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
magit/ghub@HEAD -> magit/ghub@97a07691ef (4.3.2)
ghub is in a state of flux right now, with some parts being split into
their own packages¹. The latest ghub release (4.3.2)² is just three weeks old,
so I think we are fine just pinning that one.
¹: 3e7ad9d138/CHANGELOG (v500----unreleased)
²: https://github.com/magit/ghub/releases/tag/v4.3.2
Fix: #8421
Ref: magit/ghub@30e57b2
22 lines
852 B
EmacsLisp
22 lines
852 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; tools/magit/packages.el
|
|
|
|
(package! transient :pin "f3f498aa155f88c7e2ab6d1d01d1361813059db8") ; 0.9.2
|
|
(package! magit :pin "2f1ff91f128f28aa277e0e060ef44b4be8a989c1") ; 4.3.6
|
|
(when (modulep! +forge)
|
|
(package! forge
|
|
:pin "a31859547a1ea5e2acbab67b6b64f90134e2a156" ; 0.5.3
|
|
;; forge depends on ghub, which requires Emacs 29.1+
|
|
:disable (version< emacs-version "29.1"))
|
|
(package! ghub
|
|
:pin "97a07691efad6fc16bc000a35be80d4f8dae251a" ; 4.3.2
|
|
;; ghub requires Emacs 29.1+
|
|
:disable (version< emacs-version "29.1"))
|
|
(package! code-review
|
|
:recipe (:host github
|
|
:repo "doomelpa/code-review"
|
|
:files ("graphql" "code-review*.el"))
|
|
:pin "303edcfbad8190eccb9a9269dfc58ed26d386ba5"
|
|
;; ...code-review depends on forge
|
|
:disable (version< emacs-version "29.1")))
|