rav1e: fix `strip` option mangling on x86_64-darwin

`rav1e-0.7.1` slightly changes `strip` option construction in
https://github.com/xiph/rav1e/commit/43fb165e5e07ac047dd59d9d2278bed5da95deb4

Update mangling part to restore stripping.

+1 -1
+1 -1
pkgs/tools/video/rav1e/default.nix
··· 38 38 # Darwin uses `llvm-strip`, which results in link errors when using `-x` to strip the asm library 39 39 # and linking it with cctools ld64. 40 40 postPatch = lib.optionalString (stdenv.isDarwin && stdenv.isx86_64) '' 41 - substituteInPlace build.rs --replace 'cmd.arg("-x")' 'cmd.arg("-S")' 41 + substituteInPlace build.rs --replace-fail '.arg("-x")' '.arg("-S")' 42 42 ''; 43 43 44 44 checkType = "debug";