diffoscope: fix build
ZHF #122042 Failing Hydra build: https://hydra.nixos.org/build/143815905 Currently the diff-check for `.mp3`-files is failing. The only reason for that is that right now is that there are too spaces too much on the last line[1]. [1] https://salsa.debian.org/reproducible-builds/diffoscope/-/blob/175/tests/data/mp3_expected_diff (cherry picked from commit ea55d23cd86edf4b7d06673924284880b8a68f15)
This commit is contained in:
parent
4a40836097
commit
25eaf1083f
|
@ -35,6 +35,10 @@ python3Packages.buildPythonApplication rec {
|
||||||
|
|
||||||
# When generating manpage, use the installed version
|
# When generating manpage, use the installed version
|
||||||
substituteInPlace doc/Makefile --replace "../bin" "$out/bin"
|
substituteInPlace doc/Makefile --replace "../bin" "$out/bin"
|
||||||
|
|
||||||
|
# https://salsa.debian.org/reproducible-builds/diffoscope/-/issues/258
|
||||||
|
substituteInPlace tests/data/mp3_expected_diff \
|
||||||
|
--replace " Stream" "Stream"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ docutils help2man installShellFiles ];
|
nativeBuildInputs = [ docutils help2man installShellFiles ];
|
||||||
|
|
Loading…
Reference in New Issue