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-07 01:01:59 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-02-07 01:01:59 +0100
commit8e0b0c17b79366ebed6f441c8ff236341b188a3e (patch)
tree8f7ab6d8811b3d8f4669d44cb95981656aee91e1 /pkgs/applications/radio
parenta819aea202336a32c658db4ce46300cdfb4399fb (diff)
downloadnixlib-8e0b0c17b79366ebed6f441c8ff236341b188a3e.tar
nixlib-8e0b0c17b79366ebed6f441c8ff236341b188a3e.tar.gz
nixlib-8e0b0c17b79366ebed6f441c8ff236341b188a3e.tar.bz2
nixlib-8e0b0c17b79366ebed6f441c8ff236341b188a3e.tar.lz
nixlib-8e0b0c17b79366ebed6f441c8ff236341b188a3e.tar.xz
nixlib-8e0b0c17b79366ebed6f441c8ff236341b188a3e.tar.zst
nixlib-8e0b0c17b79366ebed6f441c8ff236341b188a3e.zip
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 13049ba611fc..4af1843b17b7 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
   '';