gnu: notcurses: Adjust indentation.

* gnu/packages/notcurses.scm (notcurses): Re-indent.
This commit is contained in:
Marius Bakke 2022-08-04 12:03:24 +02:00
parent d0f25610d9
commit 243bcbb8a2
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -34,49 +34,49 @@ (define-module (gnu packages notcurses)
(define-public notcurses (define-public notcurses
(package (package
(name "notcurses") (name "notcurses")
(version "3.0.8") (version "3.0.8")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
;; Note: the upstream git repository contains non-free media (see the ;; Note: the upstream git repository contains non-free media (see the
;; documentation for DFSG_BUILD; but the project provides a sanitized ;; documentation for DFSG_BUILD; but the project provides a sanitized
;; tarball for distributions. If switching to a git source, we need ;; tarball for distributions. If switching to a git source, we need
;; to find a way to elide the non-free demos with a source 'snippet'. ;; to find a way to elide the non-free demos with a source 'snippet'.
(uri (string-append "https://github.com/dankamongmen/notcurses/releases" (uri (string-append "https://github.com/dankamongmen/notcurses/releases"
"/download/v" version "/notcurses_" version "/download/v" version "/notcurses_" version
"+dfsg.1.orig.tar.xz")) "+dfsg.1.orig.tar.xz"))
(file-name (string-append name "-" version ".tar.xz")) (file-name (string-append name "-" version ".tar.xz"))
(sha256 (sha256
(base32 "1nz32nqh7fn4i06hvl8ndkm0z4g08a6wzhilvv8ggx2hc5axsz89")))) (base32 "1nz32nqh7fn4i06hvl8ndkm0z4g08a6wzhilvv8ggx2hc5axsz89"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
`(#:make-flags `(#:make-flags
(list (string-append "CC=" ,(cc-for-target))) (list (string-append "CC=" ,(cc-for-target)))
;; These flags are documented in 'INSTALL.md' in the source distribution. ;; These flags are documented in 'INSTALL.md' in the source distribution.
#:configure-flags #:configure-flags
'(;; Do not build "coverage" '( ;; Do not build "coverage"
"-DUSE_COVERAGE=off" "-DUSE_COVERAGE=off"
;; Do not build HTML documentation ;; Do not build HTML documentation
"-DUSE_DOXYGEN=off" "-DUSE_DOXYGEN=off"
;; Don't include mouse support ;; Don't include mouse support
"-DUSE_GPM=off" "-DUSE_GPM=off"
;; Use FFmpeg for multimedia support ;; Use FFmpeg for multimedia support
"-DUSE_MULTIMEDIA=ffmpeg" "-DUSE_MULTIMEDIA=ffmpeg"
;; Follow the Debian Free Software Guidelines, omitting nonfree content. ;; Follow the Debian Free Software Guidelines, omitting nonfree content.
"-DDFSG_BUILD=ON"))) "-DDFSG_BUILD=ON")))
(native-inputs (native-inputs
(list pkg-config (list pkg-config
pandoc pandoc
doctest)) doctest))
(inputs (inputs
(list ffmpeg (list ffmpeg
libdeflate libdeflate
libunistring libunistring
ncurses ncurses
zlib)) zlib))
(synopsis "Textual user interfaces") (synopsis "Textual user interfaces")
(description "Notcurses is a library for building complex textual user (description "Notcurses is a library for building complex textual user
interfaces on modern terminals.") interfaces on modern terminals.")
(home-page "https://notcurses.com") (home-page "https://notcurses.com")
(license license:asl2.0))) (license license:asl2.0)))