diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:18:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-13 17:48:25 +0100 |
commit | 8394619baceb118df92e355377fd543bb1aa501a (patch) | |
tree | 504f07c2a9f88596a305b59ef45f941062426a52 /gnu/packages/markup.scm | |
parent | aca2defe0172868295941fd9f0e97886f6e9b2d4 (diff) | |
download | guix-8394619baceb118df92e355377fd543bb1aa501a.tar.gz |
gnu: Simplify package inputs.
This commit was obtained by running: ./pre-inst-env guix style without any additional argument.
Diffstat (limited to 'gnu/packages/markup.scm')
-rw-r--r-- | gnu/packages/markup.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm index d0b987159f..cee3207ee5 100644 --- a/gnu/packages/markup.scm +++ b/gnu/packages/markup.scm @@ -105,8 +105,8 @@ processing library written in C.") (patch-shebang "bin/markdown" (list perlbd)) (delete-file-recursively "Markdown_1.0.1")) #t)))) - (native-inputs `(("unzip" ,unzip))) - (inputs `(("perl" ,perl))) + (native-inputs (list unzip)) + (inputs (list perl)) (home-page "http://daringfireball.net/projects/markdown") (synopsis "Text-to-HTML conversion tool") (description @@ -139,7 +139,7 @@ convert it to structurally valid XHTML (or HTML).") (string-append "PREFIX=" out) (string-append "MANDIR=" out "/share/man")))))))) (native-inputs - `(("which" ,which))) + (list which)) (home-page "https://kristaps.bsd.lv/lowdown/") (synopsis "Simple Markdown translator") (description "Lowdown is a Markdown translator producing HTML5, @@ -184,7 +184,7 @@ roff documents in the ms and man formats, LaTeX, gemini, and terminal output.") (string-append "--prefix=" out) "--shared"))))))) (native-inputs - `(("pkg-config" ,pkg-config))) + (list pkg-config)) (synopsis "Markdown processing library, written in C") (description "Discount is a markdown implementation, written in C. It provides a @@ -222,7 +222,7 @@ roff documents in the ms and man formats, LaTeX, gemini, and terminal output.") "/lib"))) #t))))) (inputs - `(("discount" ,discount))) + (list discount)) (home-page "https://metacpan.org/release/Text-Markdown-Discount") (synopsis @@ -262,7 +262,7 @@ implementation. (build-system cmake-build-system) (arguments '(#:test-target "test")) - (native-inputs `(("python" ,python))) + (native-inputs (list python)) (synopsis "CommonMark Markdown reference implementation") (description "CommonMark is a strongly defined, highly compatible specification of Markdown. cmark is the C reference implementation of |