diffoscope: Ignore different link counts and inode change times

Nix does not canonicalize these, so ignore them to prevent lots of
spurious differences.
wip/yesman
Eelco Dolstra 9 years ago
parent c311b228fc
commit eda93bb51f
  1. 10
      pkgs/tools/misc/diffoscope/default.nix

@ -1,4 +1,4 @@
{ lib, stdenv, fetchgit, pythonPackages, docutils
{ lib, stdenv, fetchgit, fetchpatch, pythonPackages, docutils
, acl, binutils, bzip2, cbfstool, cdrkit, cpio, diffutils, e2fsprogs, file, fpc, gettext, ghc, gnupg1
, gzip, jdk, libcaca, mono, pdftk, poppler_utils, rpm, sng, sqlite, squashfsTools, unzip, vim, xz
, enableBloat ? false
@ -16,6 +16,14 @@ pythonPackages.buildPythonPackage rec {
sha256 = "1wdphcmr2n0pyg7zwvczy7ik1bzjlrjb76jwbzk971lwba3ajazk";
};
patches =
[ # Ignore different link counts and inode change times.
(fetchpatch {
url = https://github.com/edolstra/diffoscope/commit/367f77bba8df0dbc89e63c9f66f05736adf5ec59.patch;
sha256 = "0mnp7icdrjn02dr6f5dwqvvr848jzgkv3cg69a24234y9gxd30ww";
})
];
postPatch = ''
# Upstream doesn't provide a PKG-INFO file
sed -i setup.py -e "/'rpm-python',/d"

Loading…
Cancel
Save