diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-24 11:25:07 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-24 12:41:43 +0100 |
commit | 9fbfdff6e00a1fe347e79d78e02e1271eb2af971 (patch) | |
tree | 14a4641d24429420d0dbc11768422ed002f9fdd2 | |
parent | 9f4bdb270e178eac636df3f4bbffbe4aa3b90a67 (diff) | |
download | guix-9fbfdff6e00a1fe347e79d78e02e1271eb2af971.tar.gz guix-9fbfdff6e00a1fe347e79d78e02e1271eb2af971.zip |
gnu: pspp: Tabs to spaces.
* gnu/packages/statistics.scm (pspp): Replace tabs to spaces, fix
indentation.
Change-Id: If0f430cedeb8d346d6c42edf0dd1410163901596
-rw-r--r-- | gnu/packages/statistics.scm | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 5292a0e379..44c7220b3e 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -124,21 +124,20 @@ (version "2.0.1") (source (origin - (method url-fetch) - (uri (string-append "mirror://gnu/pspp/pspp-" - version ".tar.gz")) - (sha256 - (base32 - "002c08rxym056mn7a73jwjmcazqd4gh5j1cyml603y4ckvqb1nwf")))) + (method url-fetch) + (uri (string-append "mirror://gnu/pspp/pspp-" version ".tar.gz")) + (sha256 + (base32 + "002c08rxym056mn7a73jwjmcazqd4gh5j1cyml603y4ckvqb1nwf")))) (build-system gnu-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-test-suite - (lambda _ - (substitute* "tests/output/tex.at" - (("AT_CHECK\\(\\[LC_ALL=C.UTF-8 pspp") - "AT_CHECK([LC_ALL=en_US.UTF-8 pspp")))) + (lambda _ + (substitute* "tests/output/tex.at" + (("AT_CHECK\\(\\[LC_ALL=C.UTF-8 pspp") + "AT_CHECK([LC_ALL=en_US.UTF-8 pspp")))) (add-before 'check 'prepare-tests ;; Prevent irrelevant errors that cause test output mismatches: ;; ‘Fontconfig error: No writable cache directories’ |