diff options
| author | Anderson Torres <anderson.torres.8519@gmail.com> | 2025-12-31 20:57:49 -0300 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-02-20 22:34:56 +0100 |
| commit | d9ae8575769b188419af3d8b145d159ce71099cc (patch) | |
| tree | ff29f5d0faaf5365941dd7fffbcce343b45a8906 /gnu | |
| parent | 313e205acd6f087b8d07ccc71146930143f3e3ea (diff) | |
gnu: atf: Indent.
* gnu/packages/check.scm (atf): Cleanup.
[source, arguments, native-inputs, inputs, license]: Indent.
[description]: Indent.
Change-Id: I09bbdc1be5d176617d2f3c0230e40bf2ff31a151
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/check.scm | 48 |
1 files changed, 29 insertions, 19 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index e57cdaf3a4..0afe391b5b 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -141,28 +141,36 @@ (package (name "atf") (version "0.21") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/freebsd/atf") - (commit (string-append name "-" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0jwzz6g9jdi5f8v10y0wf3hq73vxyv5qqhkh832ddsj36gn8rlcz")) - (patches (search-patches "atf-execute-with-shell.patch")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/freebsd/atf") + (commit (string-append name "-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0jwzz6g9jdi5f8v10y0wf3hq73vxyv5qqhkh832ddsj36gn8rlcz")) + (patches + (search-patches "atf-execute-with-shell.patch")))) (build-system gnu-build-system) (arguments - (list #:configure-flags - #~(list (string-append "ATF_SHELL=" - #$(this-package-input "bash-minimal") - "/bin/sh")))) - (native-inputs (list autoconf automake libtool)) - (inputs (list bash-minimal)) + (list + #:configure-flags + #~(list (string-append "ATF_SHELL=" + #$(this-package-input "bash-minimal") + "/bin/sh")))) + (native-inputs + (list autoconf + automake + libtool)) + (inputs + (list bash-minimal)) (home-page "https://github.com/freebsd/atf") (synopsis "C/C++ Automated Testing Framework libraries") - (description "ATF, or Automated Testing Framework, is a collection of -libraries to write test programs in C, C++ and POSIX shell. + (description + "ATF, or Automated Testing Framework, is a collection of libraries to +write test programs in C, C++ and POSIX shell. The ATF libraries offer a simple API. The API is orthogonal through the various bindings, allowing developers to quickly learn how to write test @@ -173,7 +181,9 @@ allow both humans and automation to run the tests. ATF-based test programs rely on an execution engine to be run and this execution engine is not shipped with ATF. Kyua is the engine of choice.") - (license (list license:bsd-2 license:bsd-3)))) + (license + (list license:bsd-2 + license:bsd-3)))) (define-public pict (package |
