aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages/sawfish.scm
blob: 22350c87b149c15e9c865f388313dee63db9fd5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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.")))