lol

Merge pull request #134971 from Ma27/bump-diffoscope

diffoscope: 180 -> 181

authored by

Maximilian Bosch and committed by
GitHub
7738af36 10a1f694

+10 -2
+10 -2
pkgs/tools/misc/diffoscope/default.nix
··· 3 3 , e2fsprogs, file, findutils, fontforge-fonttools, ffmpeg, fpc, gettext, ghc, ghostscriptX, giflib, gnumeric, gnupg, gnutar 4 4 , gzip, hdf5, imagemagick, jdk, libarchive, libcaca, llvm, lz4, mono, openssh, openssl, pdftk, pgpdump, poppler_utils, qemu, R 5 5 , radare2, sng, sqlite, squashfsTools, tcpdump, odt2txt, unzip, wabt, xxd, xz, zip, zstd 6 + , fetchpatch 6 7 , enableBloat ? false 7 8 }: 8 9 9 10 # Note: when upgrading this package, please run the list-missing-tools.sh script as described below! 10 11 python3Packages.buildPythonApplication rec { 11 12 pname = "diffoscope"; 12 - version = "180"; 13 + version = "181"; 13 14 14 15 src = fetchurl { 15 16 url = "https://diffoscope.org/archive/diffoscope-${version}.tar.bz2"; 16 - sha256 = "sha256-P6u+5MwnJ4xQ955qdX1I/ujRCcgyCXjXDXvvpUbhqt8="; 17 + sha256 = "sha256-wom3/r0oR7K8zdz1GxLImQ4Whc4WpzPGwjqXb39mxw4="; 17 18 }; 18 19 19 20 outputs = [ "out" "man" ]; 20 21 21 22 patches = [ 22 23 ./ignore_links.patch 24 + 25 + # Fixes a minor issue with squashfs >=4.5 (which we already have). Already 26 + # in upstream's master, can be removed when updating to 182. 27 + (fetchpatch { 28 + url = "https://salsa.debian.org/reproducible-builds/diffoscope/-/commit/9e410d6fd4def177c4b5f914e74f72a59fb1a316.patch"; 29 + sha256 = "sha256-Nj5Up48lfekH8KCPaucDb78QbtJ91O2SNiA4SqBrCBI="; 30 + }) 23 31 ]; 24 32 25 33 postPatch = ''