gnu: Add emacs-fringe-helper.

* gnu/packages/emacs-xyz.scm (emacs-fringe-helper): New variable.
This commit is contained in:
Brian Leung 2019-10-14 13:54:53 -07:00
parent 19e4261837
commit 36f6ed2c64
No known key found for this signature in database
GPG key ID: 3ADC75F013D678F9

View file

@ -2340,6 +2340,34 @@ (define-public emacs-f
files and directories.")
(license license:gpl3+)))
(define-public emacs-fringe-helper
(let ((commit "ef4a9c023bae18ec1ddd7265f1f2d6d2e775efdd")
(revision "1"))
(package
(name "emacs-fringe-helper")
(version (git-version "1.0.1" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/nschum/fringe-helper.el.git")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0ra9rc53l1gvkqank8apasl3r7wz2yfjrcvmfk3wpxhh24ppxv9d"))))
(build-system emacs-build-system)
(arguments
`(#:tests? #t
#:test-command '("emacs" "--batch"
"-l" "tests.el"
"-f" "ert-run-tests-batch-and-exit")))
(home-page "https://github.com/nschum/fringe-helper.el")
(synopsis "Helper functions for fringe bitmaps")
(description
"This package allows fringe bitmaps to be defined with a visual string
representation.")
(license license:gpl2+))))
(define-public emacs-git-gutter
(package
(name "emacs-git-gutter")