about summary refs log tree commit diff
path: root/pkgs/tools/video
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2024-01-22 09:53:06 +0000
committerSergei Trofimovich <slyich@gmail.com>2024-01-22 10:46:55 +0000
commite629f662fb1cef6cb9aa69c135f1a3a7cbfc6278 (patch)
treeaeb399eb4b5a065d1b2198693d888b1bcce65a34 /pkgs/tools/video
parentf363b57fc71a6d6d0c927e03d3521f2e39d5aa76 (diff)
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.
Diffstat (limited to 'pkgs/tools/video')
-rw-r--r--pkgs/tools/video/rav1e/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/video/rav1e/default.nix b/pkgs/tools/video/rav1e/default.nix
index 4f62161b01895..406276977c520 100644
--- a/pkgs/tools/video/rav1e/default.nix
+++ b/pkgs/tools/video/rav1e/default.nix
@@ -38,7 +38,7 @@ rustPlatform.buildRustPackage rec {
   # Darwin uses `llvm-strip`, which results in link errors when using `-x` to strip the asm library
   # and linking it with cctools ld64.
   postPatch = lib.optionalString (stdenv.isDarwin && stdenv.isx86_64) ''
-    substituteInPlace build.rs --replace 'cmd.arg("-x")' 'cmd.arg("-S")'
+    substituteInPlace build.rs --replace-fail '.arg("-x")' '.arg("-S")'
   '';
 
   checkType = "debug";