gnu: Add lowdown.
* gnu/packages/markup.scm (lowdown): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>master
parent
3827c66dc1
commit
90ab3ef812
|
@ -7,6 +7,8 @@
|
||||||
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2020 EuAndreh <eu@euandre.org>
|
;;; Copyright © 2020 EuAndreh <eu@euandre.org>
|
||||||
;;; Copyright © 2021 Noisytoot <noisytoot@disroot.org>
|
;;; Copyright © 2021 Noisytoot <noisytoot@disroot.org>
|
||||||
|
;;; Copyright © 2021 Zhu Zihao <all_but_last@163.com>
|
||||||
|
;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -25,6 +27,7 @@
|
||||||
|
|
||||||
(define-module (gnu packages markup)
|
(define-module (gnu packages markup)
|
||||||
#:use-module (guix licenses)
|
#:use-module (guix licenses)
|
||||||
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
|
@ -34,6 +37,7 @@
|
||||||
#:use-module (guix build-system perl)
|
#:use-module (guix build-system perl)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
|
@ -114,6 +118,36 @@ convert it to structurally valid XHTML (or HTML).")
|
||||||
(license (non-copyleft "file://License.text"
|
(license (non-copyleft "file://License.text"
|
||||||
"See License.text in the distribution."))))
|
"See License.text in the distribution."))))
|
||||||
|
|
||||||
|
(define-public lowdown
|
||||||
|
(package
|
||||||
|
(name "lowdown")
|
||||||
|
(version "0.10.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://kristaps.bsd.lv/lowdown/snapshots/lowdown-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "15v2kk4ffqw3n6y6n9plch4qcib3ynnhw0ih8wn2v9qgn4jssp5p"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:test-target "regress"
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'configure
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let ((out (assoc-ref outputs "out")))
|
||||||
|
(invoke "./configure"
|
||||||
|
(string-append "PREFIX=" out)
|
||||||
|
(string-append "MANDIR=" out "/share/man"))))))))
|
||||||
|
(native-inputs
|
||||||
|
`(("which" ,which)))
|
||||||
|
(home-page "https://kristaps.bsd.lv/lowdown/")
|
||||||
|
(synopsis "Simple Markdown translator")
|
||||||
|
(description "Lowdown is a Markdown translator producing HTML5,
|
||||||
|
roff documents in the ms and man formats, LaTeX, gemini, and terminal output.")
|
||||||
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public discount
|
(define-public discount
|
||||||
(package
|
(package
|
||||||
(name "discount")
|
(name "discount")
|
||||||
|
|
Reference in New Issue