Add package for Sawfish's Emacs mode

This commit is contained in:
Tom Willemse 2023-10-15 22:12:51 -07:00
parent 1f92565b73
commit b03d1a86be

24
oni/packages/sawfish.scm Normal file
View file

@ -0,0 +1,24 @@
(define-module (oni packages sawfish)
#:use-module ((gnu packages sawfish)
#:select (sawfish))
#:use-module ((guix packages)
#:select (package))
#:use-module ((guix build-system emacs)
#:select (emacs-build-system)))
(define-public emacs-sawfish
(package
(inherit sawfish)
(name "emacs-sawfish")
(build-system emacs-build-system)
(arguments
'(#:include '("sawfish.el")))
(synopsis "Sawfish mode")
(native-inputs (list))
(inputs (list))
(description "\"sawfish.el\" provides
* A major mode for writing Sawfish code.
This include symbol / var / func completion and help access,
both from doc-string and info file.
* sawfish-client wrapper, i.e. an interface to interact with
running Sawfish window manager.")))