2021-07-24 21:24:48 +01:00
|
|
|
{ lib, stdenv, fetchurl, python3Packages, docutils, help2man, installShellFiles
|
|
|
|
, abootimg, acl, apksigner, apktool, binutils-unwrapped, bzip2, cbfstool, cdrkit, colord, colordiff, coreutils, cpio, db, diffutils, dtc
|
2020-06-13 03:31:01 +01:00
|
|
|
, e2fsprogs, file, findutils, fontforge-fonttools, ffmpeg, fpc, gettext, ghc, ghostscriptX, giflib, gnumeric, gnupg, gnutar
|
2020-05-30 00:25:14 +01:00
|
|
|
, gzip, hdf5, imagemagick, jdk, libarchive, libcaca, llvm, lz4, mono, openssh, openssl, pdftk, pgpdump, poppler_utils, qemu, R
|
2021-05-14 15:57:16 +01:00
|
|
|
, radare2, sng, sqlite, squashfsTools, tcpdump, odt2txt, unzip, wabt, xxd, xz, zip, zstd
|
2016-01-12 13:25:26 +00:00
|
|
|
, enableBloat ? false
|
2015-08-04 04:04:12 +01:00
|
|
|
}:
|
|
|
|
|
2018-07-19 00:31:23 +01:00
|
|
|
# Note: when upgrading this package, please run the list-missing-tools.sh script as described below!
|
2017-08-31 08:53:02 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2019-10-04 11:40:43 +01:00
|
|
|
pname = "diffoscope";
|
2021-09-08 17:08:27 +01:00
|
|
|
version = "183";
|
2015-08-04 04:04:12 +01:00
|
|
|
|
2019-10-04 11:40:43 +01:00
|
|
|
src = fetchurl {
|
2021-02-11 17:08:19 +00:00
|
|
|
url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2";
|
2021-09-08 17:08:27 +01:00
|
|
|
sha256 = "sha256-XFFrRmCpE2UvZRCELfPaotLklyjLiCDWkyFWkISOHZM=";
|
2015-08-04 04:04:12 +01:00
|
|
|
};
|
|
|
|
|
2020-04-25 00:26:01 +01:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
2017-08-31 08:53:02 +01:00
|
|
|
patches = [
|
2017-09-13 15:03:38 +01:00
|
|
|
./ignore_links.patch
|
2017-08-31 08:53:02 +01:00
|
|
|
];
|
2016-01-12 16:00:24 +00:00
|
|
|
|
2015-08-04 04:04:12 +01:00
|
|
|
postPatch = ''
|
|
|
|
# Upstream doesn't provide a PKG-INFO file
|
2015-09-27 05:10:25 +01:00
|
|
|
sed -i setup.py -e "/'rpm-python',/d"
|
2018-07-18 22:36:15 +01:00
|
|
|
|
|
|
|
# When generating manpage, use the installed version
|
|
|
|
substituteInPlace doc/Makefile --replace "../bin" "$out/bin"
|
2015-08-04 04:04:12 +01:00
|
|
|
'';
|
|
|
|
|
2021-02-11 17:08:19 +00:00
|
|
|
nativeBuildInputs = [ docutils help2man installShellFiles ];
|
2017-12-26 16:25:27 +00:00
|
|
|
|
2018-07-19 00:31:23 +01:00
|
|
|
# Most of the non-Python dependencies here are optional command-line tools for various file-format parsers.
|
|
|
|
# To help figuring out what's missing from the list, run: ./pkgs/tools/misc/diffoscope/list-missing-tools.sh
|
|
|
|
#
|
2021-08-06 18:15:13 +01:00
|
|
|
# Still missing these tools: docx2txt dumpimage dumppdf dumpxsb enjarify lipo ocamlobjinfo oggDump otool procyon
|
2020-01-14 09:56:52 +00:00
|
|
|
pythonPath = [
|
|
|
|
binutils-unwrapped bzip2 colordiff coreutils cpio db diffutils
|
2021-07-19 05:20:00 +01:00
|
|
|
e2fsprogs file findutils fontforge-fonttools gettext gnutar gzip
|
2020-05-30 00:25:14 +01:00
|
|
|
libarchive libcaca lz4 openssl pgpdump sng sqlite squashfsTools unzip xxd
|
|
|
|
xz zip zstd
|
2020-01-14 09:56:52 +00:00
|
|
|
]
|
2020-05-30 00:25:14 +01:00
|
|
|
++ (with python3Packages; [
|
|
|
|
argcomplete debian defusedxml jsondiff jsbeautifier libarchive-c
|
|
|
|
python_magic progressbar33 pypdf2 rpm tlsh
|
|
|
|
])
|
2021-07-19 05:20:00 +01:00
|
|
|
++ lib.optionals stdenv.isLinux [ python3Packages.pyxattr acl cdrkit dtc ]
|
2020-05-30 00:25:14 +01:00
|
|
|
++ lib.optionals enableBloat ([
|
2020-06-13 03:31:01 +01:00
|
|
|
abootimg apksigner apktool cbfstool colord ffmpeg fpc ghc ghostscriptX giflib gnupg gnumeric
|
2021-05-14 15:57:16 +01:00
|
|
|
hdf5 imagemagick llvm jdk mono odt2txt openssh pdftk poppler_utils qemu R tcpdump wabt radare2
|
2020-05-30 00:25:14 +01:00
|
|
|
] ++ (with python3Packages; [ binwalk guestfs h5py ]));
|
2017-03-20 13:19:50 +00:00
|
|
|
|
2021-02-11 17:08:19 +00:00
|
|
|
checkInputs = with python3Packages; [ pytestCheckHook ] ++ pythonPath;
|
2015-08-04 04:04:12 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
2017-12-26 16:25:27 +00:00
|
|
|
make -C doc
|
2021-02-11 17:08:19 +00:00
|
|
|
installManPage doc/diffoscope.1
|
2015-08-04 04:04:12 +01:00
|
|
|
'';
|
|
|
|
|
2021-02-11 17:08:19 +00:00
|
|
|
# Disable flaky test and a failing one
|
|
|
|
disabledTests = [
|
|
|
|
"test_android_manifest"
|
|
|
|
"test_sbin_added_to_path"
|
2021-04-01 20:39:24 +01:00
|
|
|
"test_diff_meta"
|
|
|
|
"test_diff_meta2"
|
2021-07-22 15:00:56 +01:00
|
|
|
"test_obj_no_differences"
|
2021-07-31 17:05:27 +01:00
|
|
|
|
|
|
|
# Failing because of file-v5.40 has a slightly different output.
|
|
|
|
# Upstream issue: https://salsa.debian.org/reproducible-builds/diffoscope/-/issues/271
|
|
|
|
"test_text_proper_indentation"
|
2021-07-19 05:20:00 +01:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
# Disable flaky tests on Darwin
|
|
|
|
"test_non_unicode_filename"
|
|
|
|
"test_listing"
|
|
|
|
];
|
|
|
|
|
|
|
|
# flaky tests on Darwin
|
|
|
|
disabledTestPaths = lib.optionals stdenv.isDarwin [
|
|
|
|
"tests/comparators/test_git.py"
|
|
|
|
"tests/comparators/test_java.py"
|
|
|
|
"tests/comparators/test_uimage.py"
|
|
|
|
"tests/comparators/test_device.py"
|
|
|
|
"tests/comparators/test_macho.py"
|
2021-02-11 17:08:19 +00:00
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-08-04 04:04:12 +01:00
|
|
|
description = "Perform in-depth comparison of files, archives, and directories";
|
|
|
|
longDescription = ''
|
|
|
|
diffoscope will try to get to the bottom of what makes files or directories
|
|
|
|
different. It will recursively unpack archives of many kinds and transform
|
|
|
|
various binary formats into more human readable form to compare them. It can
|
|
|
|
compare two tarballs, ISO images, or PDF just as easily. The differences can
|
|
|
|
be shown in a text or HTML report.
|
|
|
|
|
|
|
|
diffoscope is developed as part of the "reproducible builds" Debian
|
|
|
|
project and was formerly known as "debbindiff".
|
|
|
|
'';
|
2021-02-11 17:08:19 +00:00
|
|
|
homepage = "https://diffoscope.org/";
|
|
|
|
license = licenses.gpl3Plus;
|
2020-06-12 17:23:16 +01:00
|
|
|
maintainers = with maintainers; [ dezgeg ma27 danielfullmer ];
|
2021-02-11 17:08:19 +00:00
|
|
|
platforms = platforms.unix;
|
2015-08-04 04:04:12 +01:00
|
|
|
};
|
|
|
|
}
|