diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-21 21:40:11 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:53 +0100 |
| commit | c41b31efdbb51a00ce5bb8df4e376c5ba15fc65a (patch) | |
| tree | 99b3e5458f5b18c8def62b679e5d720a1d633252 /gnu/packages | |
| parent | 0ba00cccde3a59d3cfd4543cab8a882b5dd98fe3 (diff) | |
gnu: subunit: Adjust style.
* gnu/packages/check.scm (subunit): Fix fill column and indentation.
Change-Id: I597432d65637369d0d7f77c3b59547555b5f259b
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/check.scm | 49 |
1 files changed, 26 insertions, 23 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 4286cb9910..2451fd9d04 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -3933,30 +3933,33 @@ helpers for writing tests.") (package (name "subunit") (version "1.4.4") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/testing-cabal/subunit") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0fcqxh4cwhn9yz2z1zszzvgc554gai5b7c59w45a4cg9y9p30h8d")))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/testing-cabal/subunit") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fcqxh4cwhn9yz2z1zszzvgc554gai5b7c59w45a4cg9y9p30h8d")))) (build-system gnu-build-system) - (native-inputs (list autoconf - automake - check - cppunit - libtool - pkg-config - python-fixtures - python-hypothesis - python-testscenarios)) - (inputs (list perl python)) - (propagated-inputs (list - python-iso8601 - python-pygobject - python-testtools)) + (native-inputs + (list autoconf + automake + check + cppunit + libtool + pkg-config + python-fixtures + python-hypothesis + python-testscenarios)) + (inputs + (list perl + python)) + (propagated-inputs + (list python-iso8601 + python-pygobject + python-testtools)) (home-page "https://github.com/testing-cabal/subunit") (synopsis "Test reporting and control protocol") (description |
