Ripgrep-all build error on latest unstable

I’m unable to build ripgrep-all since this morning. Can someone try this?

nix build nixpkgs#ripgrep-all
error: builder for '/nix/store/md5x85n2jdc3rxxi8i8nbb63g3qvp866-ripgrep-all-0.9.6.drv' failed with exit code 1;
       last 25 log lines:
       > adapter: zip
       > adapter: tar
       > adapter: poppler
       > adapter: poppler
       > adapter: zip
       > adapter: poppler
       > adapter: pandoc
       > Unknown option --atx-headers.
       > Try pandoc --help for more information.
       > Error: Broken pipe (os error 32)
       > -------------------------------------------------------------------------------
       > exampledir/tar/test.tar.bz2: preprocessor command failed: '"/nix/store/z8d0i9krp1f48sgvyzki48sd8bv2dkpj-ripgrep-all-0.9.6/bin/rga-preproc" "exampledir/tar/test.tar.bz2"':
       > -------------------------------------------------------------------------------
       > adapter: decompress
       > adapter: tar
       > adapter: poppler
       > adapter: poppler
       > adapter: zip
       > adapter: poppler
       > adapter: pandoc
       > Unknown option --atx-headers.
       > Try pandoc --help for more information.
       > Error: Broken pipe (os error 32)
       > -------------------------------------------------------------------------------
       > ERROR: test1 failed! Could not find the word 'hello' 26 times in the sample data.
       For full logs, run 'nix log /nix/store/md5x85n2jdc3rxxi8i8nbb63g3qvp866-ripgrep-all-0.9.6.drv'.

I’ve looked in nixpkgs, but I don’t see any changes.

Same error here for me as well.

It looks like ripgrep-all is trying to use a the pandoc flag --atx-headers, which no longer exists.
Upstream issue: Failure on searching epub with pandoc deprecation warning · Issue #115 · phiresky/ripgrep-all · GitHub

It looks like it was already fixed: fixes to postprocessing · phiresky/ripgrep-all@020000c · GitHub.

Updating ripgrep-all to the latest version should fix this, the release in nixpkgs is from 2020-05-19.

Had this issue too - was confused since I didn’t see a report on the nixpkgs report yet. I suppose we just wait for a day now?

Edit - issue reported

Can we disable doCheck or doInstallCheck to stop this build error temporarily?

      (ripgrep-all.overrideAttrs (old: { 
                doInstallCheck = false; 
        }))