mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: diffoscope: Remove input labels.
* gnu/packages/diffoscope.scm (diffoscope)[native-inputs]: Remove input labels.
This commit is contained in:
parent
62085c36fa
commit
b3a0db7a0e
1 changed files with 73 additions and 70 deletions
|
@ -149,78 +149,81 @@ (define-public diffoscope
|
||||||
acl ;for getfacl
|
acl ;for getfacl
|
||||||
colordiff
|
colordiff
|
||||||
xxd))
|
xxd))
|
||||||
(native-inputs `(("help2man" ,help2man)
|
(native-inputs
|
||||||
;; Below are modules used for tests.
|
(append
|
||||||
("binwalk" ,binwalk)
|
(list help2man
|
||||||
("python-pytest" ,python-pytest)
|
|
||||||
("python-chardet" ,python-chardet)
|
|
||||||
("python-black" ,python-black)
|
|
||||||
("python-h5py" ,python-h5py)
|
|
||||||
("python-pypdf2" ,python-pypdf2)
|
|
||||||
("python-progressbar33" ,python-progressbar33)
|
|
||||||
;; The test suite skips tests when these are missing.
|
|
||||||
,@(match (%current-system)
|
|
||||||
;; ghc is only available on x86 currently.
|
|
||||||
((or "x86_64-linux" "i686-linux")
|
|
||||||
`(("ghc" ,ghc)))
|
|
||||||
(_
|
|
||||||
`()))
|
|
||||||
,@(match (%current-system)
|
|
||||||
;; openjdk and dependent packages are only
|
|
||||||
;; available on x86_64 currently.
|
|
||||||
((or "x86_64-linux")
|
|
||||||
`(("enjarify" ,enjarify)
|
|
||||||
;; no unversioned openjdk available
|
|
||||||
("openjdk:jdk" ,openjdk12 "jdk")))
|
|
||||||
(_
|
|
||||||
`()))
|
|
||||||
("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;
|
;; Below are packages used for tests.
|
||||||
;; remove when 'file' is updated.
|
binwalk
|
||||||
("file" ,file-next)
|
python-pytest
|
||||||
|
python-chardet
|
||||||
|
python-black
|
||||||
|
python-h5py
|
||||||
|
python-pypdf2
|
||||||
|
python-progressbar33
|
||||||
|
|
||||||
("fpc" ,fpc)
|
abootimg
|
||||||
("gettext" ,gettext-minimal)
|
bdb
|
||||||
("ghostscript" ,ghostscript)
|
binutils
|
||||||
("giflib:bin" ,giflib "bin")
|
bzip2
|
||||||
("gnumeric" ,gnumeric)
|
cdrtools
|
||||||
("gnupg" ,gnupg)
|
colord
|
||||||
("hdf5" ,hdf5)
|
cpio
|
||||||
("imagemagick" ,imagemagick)
|
docx2txt
|
||||||
("libarchive" ,libarchive)
|
dtc
|
||||||
("llvm" ,llvm)
|
e2fsprogs
|
||||||
("lz4" ,lz4)
|
ffmpeg
|
||||||
("mono" ,mono)
|
|
||||||
("ocaml" ,ocaml)
|
;; XXX: Must be the same version as python-magic uses;
|
||||||
("odt2txt" ,odt2txt)
|
;; remove when 'file' is updated.
|
||||||
("openssh" ,openssh)
|
file-next
|
||||||
("openssl" ,openssl)
|
|
||||||
("pgpdump" ,pgpdump)
|
fpc
|
||||||
("poppler" ,poppler)
|
gettext-minimal
|
||||||
("python-jsbeautifier" ,python-jsbeautifier)
|
ghostscript
|
||||||
("r-minimal" ,r-minimal)
|
`(,giflib "bin")
|
||||||
("rpm" ,rpm)
|
gnumeric
|
||||||
("sng" ,sng)
|
gnupg
|
||||||
("sqlite" ,sqlite)
|
hdf5
|
||||||
("squashfs-tools" ,squashfs-tools)
|
imagemagick
|
||||||
("tcpdump" ,tcpdump)
|
libarchive
|
||||||
("unzip" ,unzip)
|
llvm
|
||||||
("wabt" ,wabt)
|
lz4
|
||||||
("xxd" ,xxd)
|
mono
|
||||||
("xz" ,xz)
|
ocaml
|
||||||
("zip" ,zip)
|
odt2txt
|
||||||
("zstd" ,zstd)))
|
openssh
|
||||||
|
openssl
|
||||||
|
pgpdump
|
||||||
|
poppler
|
||||||
|
python-jsbeautifier
|
||||||
|
r-minimal
|
||||||
|
rpm
|
||||||
|
sng
|
||||||
|
sqlite
|
||||||
|
squashfs-tools
|
||||||
|
tcpdump
|
||||||
|
unzip
|
||||||
|
wabt
|
||||||
|
xxd
|
||||||
|
xz
|
||||||
|
zip
|
||||||
|
zstd)
|
||||||
|
|
||||||
|
;; Also for tests. The test suite skips tests when these are missing.
|
||||||
|
(match (%current-system)
|
||||||
|
;; ghc is only available on x86 currently.
|
||||||
|
((or "x86_64-linux" "i686-linux")
|
||||||
|
(list ghc))
|
||||||
|
(_ '()))
|
||||||
|
(match (%current-system)
|
||||||
|
;; openjdk and dependent packages are only
|
||||||
|
;; available on x86_64 currently.
|
||||||
|
((or "x86_64-linux")
|
||||||
|
(list enjarify)
|
||||||
|
;; No unversioned openjdk available.
|
||||||
|
(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
|
||||||
|
|
Loading…
Reference in a new issue