Merge pull request #144913 from trofi/fix-ansifilter-non-determinism

ansifilter: fix non-determinism in gzipped manpages with s/gzip/gzip -n/
This commit is contained in:
Janne Heß 2021-11-07 15:29:17 +01:00 committed by GitHub
commit faf28d5055
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
postPatch = ''
substituteInPlace src/makefile --replace "CC=g++" "CC=c++"
# avoid timestamp non-determinism with '-n'
substituteInPlace makefile --replace 'gzip -9f' 'gzip -9nf'
'';
makeFlags = [