nixpkgs/pkgs/tools/misc/diffoscope/default.nix

78 lines
3.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, python3Packages, docutils, help2man
2018-03-03 20:30:00 +00:00
, acl, apktool, binutils-unwrapped, bzip2, cbfstool, cdrkit, colord, colordiff, coreutils, cpio, db, diffutils, dtc
, e2fsprogs, file, findutils, fontforge-fonttools, fpc, gettext, ghc, ghostscriptX, giflib, gnumeric, gnupg, gnutar
2018-07-18 21:23:25 +00:00
, gzip, imagemagick, jdk, libarchive, libcaca, llvm, lz4, mono, openssh, pdftk, pgpdump, poppler_utils, sng, sqlite
2017-09-14 12:25:08 +00:00
, squashfsTools, tcpdump, unoconv, unzip, xxd, xz
, enableBloat ? false
}:
# Note: when upgrading this package, please run the list-missing-tools.sh script as described below!
2017-08-31 07:53:02 +00:00
python3Packages.buildPythonApplication rec {
pname = "diffoscope";
version = "137";
src = fetchurl {
url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2";
sha256 = "1qa508nlqvz0s0cd6jk5c8m43kqfx1h2mgx50iphy4y0spnyv946";
};
2017-08-31 07:53:02 +00:00
patches = [
2017-09-13 14:03:38 +00:00
./ignore_links.patch
2017-08-31 07:53:02 +00:00
];
postPatch = ''
# Upstream doesn't provide a PKG-INFO file
sed -i setup.py -e "/'rpm-python',/d"
# When generating manpage, use the installed version
substituteInPlace doc/Makefile --replace "../bin" "$out/bin"
'';
2017-12-26 16:25:27 +00:00
nativeBuildInputs = [ docutils help2man ];
# 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
#
# Still missing these tools: abootimg docx2txt dumpxsb enjarify js-beautify lipo oggDump otool procyon-decompiler Rscript wasm2wat zipnode
# Also these libraries: python3-guestfs
2020-01-14 09:56:52 +00:00
pythonPath = [
binutils-unwrapped bzip2 colordiff coreutils cpio db diffutils
2018-03-03 20:30:00 +00:00
dtc e2fsprogs file findutils fontforge-fonttools gettext gnutar gzip
2020-01-14 09:56:52 +00:00
libarchive libcaca lz4 pgpdump sng sqlite squashfsTools unzip xxd xz
]
++ (with python3Packages; [ debian libarchive-c python_magic tlsh rpm progressbar33 ])
++ lib.optionals stdenv.isLinux [ python3Packages.pyxattr acl cdrkit ]
++ lib.optionals enableBloat [
apktool cbfstool colord fpc ghc ghostscriptX giflib gnupg gnumeric imagemagick
llvm jdk mono openssh pdftk poppler_utils tcpdump unoconv
2019-02-07 01:58:55 +00:00
python3Packages.guestfs
];
doCheck = false; # Calls 'mknod' in squashfs tests, which needs root
2017-12-26 16:25:27 +00:00
checkInputs = with python3Packages; [ pytest ];
postInstall = ''
2017-12-26 16:25:27 +00:00
make -C doc
mkdir -p $out/share/man/man1
2017-12-26 16:25:27 +00:00
cp doc/diffoscope.1 $out/share/man/man1/diffoscope.1
'';
meta = with stdenv.lib; {
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".
'';
homepage = "https://diffoscope.org/";
2017-08-31 07:53:02 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dezgeg ma27 ];
2020-01-14 09:56:52 +00:00
platforms = platforms.unix;
};
}