aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages/emacs.scm
diff options
context:
space:
mode:
authorGravatar Tom Willemse2021-07-09 00:15:52 -0700
committerGravatar Tom Willemse2021-07-09 00:15:52 -0700
commite4cc696c5e1bd02d340f918b76456f69b4fb1d7d (patch)
tree95abae53ff4c08bb455fc968d99f90b80734741d /oni/packages/emacs.scm
parent26d5e92b16ba0b88f6d24eff535821928fd1bcdd (diff)
downloadguix-packages-e4cc696c5e1bd02d340f918b76456f69b4fb1d7d.tar.gz
guix-packages-e4cc696c5e1bd02d340f918b76456f69b4fb1d7d.zip
Add ‘emacs-oni-c’ and related packages
Diffstat (limited to 'oni/packages/emacs.scm')
-rw-r--r--oni/packages/emacs.scm46
1 files changed, 46 insertions, 0 deletions
diff --git a/oni/packages/emacs.scm b/oni/packages/emacs.scm
index 1c871c5..4ea231a 100644
--- a/oni/packages/emacs.scm
+++ b/oni/packages/emacs.scm
@@ -100,3 +100,49 @@ custom pairs?)")
(description "Insert Unicode char via insert-char-preview similar to insert-char command, but
with character preview in completion prompt.")
(license license:gpl3+))))
+
+(define-public emacs-flycheck-posframe
+ (let ((commit "8f60c9bf124ab9597d681504a73fdf116a0bde12")
+ (revision "0"))
+ (package
+ (name "emacs-flycheck-posframe")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (uri (git-reference
+ (url "https://github.com/alexmurray/flycheck-posframe")
+ (commit commit)))
+ (method git-fetch)
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0qh9hzvs95jvfrspglzkwhfq6a5pinab94bbh5vzkg8jc2fq6drf"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-flycheck" ,emacs-flycheck)
+ ("emacs-posframe" ,emacs-posframe)))
+ (home-page "https://github.com/alexmurray/flycheck-posframe")
+ (synopsis "Show flycheck errors via posframe.el")
+ (description "Show flycheck errors via posframe.el")
+ (license license:gpl3+))))
+
+(define-public emacs-flycheck-cask
+ (package
+ (name "emacs-flycheck-cask")
+ (version "0.4")
+ (source
+ (origin
+ (uri (git-reference
+ (url "https://github.com/flycheck/flycheck-cask")
+ (commit version)))
+ (method git-fetch)
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1wm5saf29gw0gp0qq5glf9qq3iras99npc2rip7bsnn0czr2mscy"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-flycheck" ,emacs-flycheck)
+ ("emacs-dash" ,emacs-dash)))
+ (home-page "https://github.com/flycheck/flycheck-cask")
+ (synopsis "Cask support for Flycheck")
+ (description "Make Flycheck use Cask packages in Cask projects.")
+ (license license:gpl3+)))