about summary refs log tree commit diff
path: root/pkgs/applications/radio
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-02-11 19:51:29 +0100
committerGitHub <noreply@github.com>2024-02-11 19:51:29 +0100
commit5189c6c33ae12d43691f15a345a5b68857ab9521 (patch)
treeac974609372a849fe9a491b7ba77fe68b4a00b48 /pkgs/applications/radio
parentf7152e2e18a80a61e507c4be485ca1289dc8cffd (diff)
parent8e0b0c17b79366ebed6f441c8ff236341b188a3e (diff)
Merge pull request #286844 from wegank/freedv-bump
freedv: 1.9.7.2 -> 1.9.8
Diffstat (limited to 'pkgs/applications/radio')
-rw-r--r--pkgs/applications/radio/freedv/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/radio/freedv/default.nix b/pkgs/applications/radio/freedv/default.nix
index 13049ba611fc6..4af1843b17b72 100644
--- a/pkgs/applications/radio/freedv/default.nix
+++ b/pkgs/applications/radio/freedv/default.nix
@@ -25,7 +25,7 @@
 
 stdenv.mkDerivation rec {
   pname = "freedv";
-  version = "1.9.7.2";
+  version = "1.9.8";
 
   src = fetchFromGitHub {
     owner = "drowe67";
@@ -36,9 +36,9 @@ stdenv.mkDerivation rec {
 
   postPatch = lib.optionalString stdenv.isDarwin ''
     substituteInPlace CMakeLists.txt \
-      --replace "-Wl,-ld_classic" ""
+      --replace-fail "-Wl,-ld_classic" ""
     substituteInPlace src/CMakeLists.txt \
-      --replace "\''${CMAKE_SOURCE_DIR}/macdylibbundler/dylibbundler" "dylibbundler"
+      --replace-fail "\''${CMAKE_SOURCE_DIR}/macdylibbundler/dylibbundler" "dylibbundler"
     sed -i "/codesign/d;/hdiutil/d" src/CMakeLists.txt
   '';