gnu: diffoscope: Fix indentation.

* gnu/packages/diffoscope.scm (diffoscope): Fix indentation.
This commit is contained in:
Maxim Cournoyer 2023-01-22 19:46:49 -05:00
parent eea8a872ff
commit e5dc6541fe
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -142,94 +142,94 @@ (define-public diffoscope
(let* ((out (assoc-ref outputs "out")) (let* ((out (assoc-ref outputs "out"))
(man (string-append out "/share/man/man1"))) (man (string-append out "/share/man/man1")))
(install-file "doc/diffoscope.1" man))))))) (install-file "doc/diffoscope.1" man)))))))
(inputs (list rpm ;for rpm-python (inputs (list rpm ;for rpm-python
python-debian python-debian
python-libarchive-c python-libarchive-c
python-magic python-magic
python-tlsh python-tlsh
acl ;for getfacl acl ;for getfacl
coreutils ;for stat coreutils ;for stat
diffutils ;for diff diffutils ;for diff
xxd)) xxd))
(native-inputs (native-inputs
(append (append
(list help2man (list help2man
;; Below are packages used for tests. ;; Below are packages used for tests.
binwalk binwalk
python-pytest python-pytest
python-chardet python-chardet
python-h5py python-h5py
python-pypdf python-pypdf
python-progressbar33 python-progressbar33
abootimg abootimg
bdb bdb
binutils binutils
bzip2 bzip2
cdrtools cdrtools
colord colord
cpio cpio
docx2txt docx2txt
dtc dtc
e2fsprogs e2fsprogs
ffmpeg ffmpeg
;; XXX: Must be the same version as python-magic uses; ;; XXX: Must be the same version as python-magic uses;
;; remove when 'file' is updated. ;; remove when 'file' is updated.
file-next) file-next)
(match (%current-system) (match (%current-system)
;; fpc is only available on x86 currently. ;; fpc is only available on x86 currently.
((or "x86_64-linux" "i686-linux") ((or "x86_64-linux" "i686-linux")
(list fpc)) (list fpc))
(_ '())) (_ '()))
(list gettext-minimal (list gettext-minimal
ghostscript ghostscript
`(,giflib "bin") `(,giflib "bin")
gnumeric gnumeric
gnupg gnupg
hdf5 hdf5
imagemagick imagemagick
libarchive libarchive
llvm-9 llvm-9
lz4 lz4
lzip lzip
ocaml ocaml
odt2txt odt2txt
openssh openssh
openssl openssl
pgpdump pgpdump
poppler poppler
python-jsbeautifier python-jsbeautifier
r-minimal r-minimal
rpm rpm
sng sng
sqlite sqlite
squashfs-tools squashfs-tools
tcpdump tcpdump
unzip unzip
wabt wabt
xxd xxd
xz xz
zip zip
zstd) zstd)
;; Also for tests. The test suite skips tests when these are missing. ;; Also for tests. The test suite skips tests when these are missing.
(match (%current-system) (match (%current-system)
;; ghc is only available on x86 currently. ;; ghc is only available on x86 currently.
((or "x86_64-linux" "i686-linux") ((or "x86_64-linux" "i686-linux")
(list ghc)) (list ghc))
(_ '())) (_ '()))
(match (%current-system) (match (%current-system)
;; openjdk and dependent packages are only ;; openjdk and dependent packages are only
;; available on x86_64 currently. ;; available on x86_64 currently.
((or "x86_64-linux") ((or "x86_64-linux")
(list enjarify) (list enjarify)
;; No unversioned openjdk available. ;; No unversioned openjdk available.
(list `(,openjdk12 "jdk"))) (list `(,openjdk12 "jdk")))
(_ '())))) (_ '()))))
(home-page "https://diffoscope.org/") (home-page "https://diffoscope.org/")
(synopsis "Compare files, archives, and directories in depth") (synopsis "Compare files, archives, and directories in depth")
(description (description