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

68 lines
2.6 KiB
Nix
Raw Normal View History

2017-12-26 17:25:27 +01:00
{ lib, stdenv, fetchgit, python3Packages, docutils, help2man
, acl, apktool, libbfd, bzip2, cbfstool, cdrkit, colord, colordiff, coreutils, cpio, diffutils, dtc
2017-09-14 14:25:08 +02:00
, e2fsprogs, file, findutils, fontforge-fonttools, fpc, gettext, ghc, ghostscriptX, giflib, gnupg1, gnutar
, gzip, imagemagick, jdk, libarchive, libcaca, llvm, mono, openssh, pdftk, pgpdump, poppler_utils, sng, sqlite
, squashfsTools, tcpdump, unoconv, unzip, xxd, xz
, enableBloat ? false
}:
2017-08-31 09:53:02 +02:00
python3Packages.buildPythonApplication rec {
name = "diffoscope-${version}";
2017-12-26 17:25:27 +01:00
version = "90";
src = fetchgit {
2017-08-31 09:53:02 +02:00
url = "git://anonscm.debian.org/reproducible/diffoscope.git";
rev = "refs/tags/${version}";
2017-12-26 17:25:27 +01:00
sha256 = "1w16667j6ag2iim1xcy8y9v9965mq50k64wnf693mivddll62704";
};
2017-08-31 09:53:02 +02:00
patches = [
2017-09-13 16:03:38 +02:00
./ignore_links.patch
2017-08-31 09:53:02 +02:00
];
postPatch = ''
# Upstream doesn't provide a PKG-INFO file
sed -i setup.py -e "/'rpm-python',/d"
'';
2017-12-26 17:25:27 +01:00
nativeBuildInputs = [ docutils help2man ];
2017-09-14 14:25:08 +02:00
# Still missing these tools: docx2txt enjarify js-beautify oggDump Rscript
# Also these libraries: python3-guestfs
2017-09-13 16:54:23 +02:00
pythonPath = with python3Packages; [ debian libarchive-c python_magic tlsh rpm ] ++ [
acl libbfd bzip2 cdrkit colordiff coreutils cpio diffutils dtc e2fsprogs file findutils
fontforge-fonttools gettext gnutar gzip libarchive libcaca pgpdump sng sqlite
2017-09-14 14:25:08 +02:00
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 17:25:27 +01:00
checkInputs = with python3Packages; [ pytest ];
postInstall = ''
2017-12-26 17:25:27 +01:00
make -C doc
mkdir -p $out/share/man/man1
2017-12-26 17:25:27 +01: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 09:53:02 +02:00
homepage = https://wiki.debian.org/ReproducibleBuilds;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ dezgeg ];
platforms = platforms.linux;
};
}