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

68 lines
2.7 KiB
Nix
Raw Normal View History

2017-12-26 16:25:27 +00:00
{ lib, stdenv, fetchgit, 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
2017-09-14 12:25:08 +00:00
, e2fsprogs, file, findutils, fontforge-fonttools, fpc, gettext, ghc, ghostscriptX, giflib, gnupg1, 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
}:
2017-08-31 07:53:02 +00:00
python3Packages.buildPythonApplication rec {
name = "diffoscope-${version}";
2018-07-18 21:17:38 +00:00
version = "99";
src = fetchgit {
2018-03-13 13:12:00 +00:00
url = "https://anonscm.debian.org/git/reproducible/diffoscope.git";
2017-08-31 07:53:02 +00:00
rev = "refs/tags/${version}";
2018-07-18 21:17:38 +00:00
sha256 = "04a2sqv43g002b7s0crk9gnpdvf90j8j8p01b6shinxh6an8prs2";
};
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"
'';
2017-12-26 16:25:27 +00:00
nativeBuildInputs = [ docutils help2man ];
2018-03-03 20:30:00 +00:00
# Still missing these tools: abootimg docx2txt dumpxsb enjarify js-beautify lipo oggDump otool procyon-decompiler Rscript
# Also these libraries: python3-guestfs
2017-09-13 14:54:23 +00:00
pythonPath = with python3Packages; [ debian libarchive-c python_magic tlsh rpm ] ++ [
2018-03-03 20:30:00 +00:00
acl binutils-unwrapped bzip2 cdrkit colordiff coreutils cpio db diffutils
dtc e2fsprogs file findutils fontforge-fonttools gettext gnutar gzip
2018-07-18 21:23:25 +00:00
libarchive libcaca lz4 pgpdump progressbar33 sng sqlite squashfsTools unzip xxd xz
] ++ lib.optionals enableBloat [
apktool cbfstool colord fpc ghc ghostscriptX giflib gnupg1 imagemagick
llvm jdk mono openssh pdftk poppler_utils tcpdump unoconv
];
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".
'';
2017-08-31 07:53:02 +00:00
homepage = https://wiki.debian.org/ReproducibleBuilds;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dezgeg ];
platforms = platforms.linux;
};
}