mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add ronn.
* gnu/packages/man.scm (ronn): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
56db7a6613
commit
e445ae9ae1
1 changed files with 25 additions and 0 deletions
|
@ -30,6 +30,7 @@ (define-module (gnu packages man)
|
|||
#:use-module (guix download)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system ruby)
|
||||
#:use-module (gnu packages dbm)
|
||||
#:use-module (gnu packages flex)
|
||||
#:use-module (gnu packages gawk)
|
||||
|
@ -39,6 +40,30 @@ (define-module (gnu packages man)
|
|||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages linux))
|
||||
|
||||
(define-public ronn
|
||||
(package
|
||||
(name "ronn")
|
||||
(version "0.7.3")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/rtomayko/ronn.git")
|
||||
(commit version)))
|
||||
(file-name
|
||||
(git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0fkniz7j1jp8v3i05m6hks3nsh6rzvjfi0ichpi7h4gwk5byxb94"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ; Library hpricot not available
|
||||
(synopsis "Manual authoring tool")
|
||||
(description "Ronn builds manuals. It converts simple, human readable
|
||||
textfiles to roff for terminal display, and also to HTML for the web.")
|
||||
(home-page "https://rtomayko.github.io/ronn/")
|
||||
(license expat)))
|
||||
|
||||
(define-public libpipeline
|
||||
(package
|
||||
(name "libpipeline")
|
||||
|
|
Loading…
Reference in a new issue