(define-module (rodion packages emacs) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix git-download) #:use-module (guix build-system emacs) #:use-module (gnu packages emacs-xyz) #:use-module (guix gexp)) (define-public emacs-mood-one-theme (package (name "emacs-mood-one-theme") (version "1.2.2") (source (origin (method git-fetch) (uri (git-reference (url "https://gitlab.com/jessieh/mood-one-theme") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0scraadlync08zsn84f66jb1s6jch3pr6asgvfm9cms8fsnfmrbs")))) (build-system emacs-build-system) (arguments (list #:tests? #false)) (home-page "https://gitlab.com/jessieh/mood-one-theme") (synopsis "A dark Emacs color scheme inspired by the Doom One theme") (description "mood-one-theme is a dark color scheme that aims to replicate some of the features of the Doom One theme.") (license license:unlicense))) (define-public emacs-yaml-pro (package (name "emacs-yaml-pro") (version "0.3.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/zkry/yaml-pro") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1ml7rp89alx6g1c5n325gzygwlgywxa40qf8xc0ag4nwzyp6z109")))) (build-system emacs-build-system) (propagated-inputs (list emacs-yaml)) (arguments (list #:tests? #false)) (home-page "https://github.com/zkry/yaml-pro") (synopsis "Tools for editing YAML leveraging tree-sitter/parser") (description "yaml-pro is a package that provides conveniences for editing yaml. This package has been written to leverage tree-sitter parsing facilities, allowing all of these actions to be performed fast and accurate, even in the absence of parsing errors. The tree-sitter version is orders of magnitudes faster and I highly recommend its usage if your Emacs version permits.") (license license:gpl3))) (define-public emacs-languagetool (package (name "emacs-languagetool") (version "1.3.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/PillFall/languagetool.el") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "18rynn9gv7kwaivp836lkkllrc51h6yn64x4r279fg1w4psrq94b")))) (build-system emacs-build-system) (propagated-inputs (list emacs-yaml)) (arguments (list #:tests? #false)) (home-page "https://github.com/PillFall/languagetool.el") (synopsis "LanguageTool suggestions integrated within Emacs") (description "LanguageTool is a free and open-source multilingual grammar, style, and spell checker with support for more than 30 languages. So, why not use it as your Emacs grammar and spell check tool. That is what this package is for.") (license license:gpl3))) (define-public emacs-ox-gemini/latest ;; No releases yet (let ((commit "50818de823b7929f2d3207833e7c581280a60289") (revision "2")) (package (inherit emacs-ox-gemini) (name "emacs-ox-gemini") (version (git-version "0" revision commit)) (source (origin (method git-fetch) (uri (git-reference (url "https://git.sr.ht/~abrahms/ox-gemini") (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 "1kaf3p6g46rvbiyrkfmpflhdvzz9bdqsq1m02496py92399x3knz")))))))