diff options
author | Weijia Wang | 2024-02-07 01:01:59 +0100 |
---|---|---|
committer | Weijia Wang | 2024-02-07 01:01:59 +0100 |
commit | 8e0b0c17b79366ebed6f441c8ff236341b188a3e (patch) | |
tree | 8f7ab6d8811b3d8f4669d44cb95981656aee91e1 /pkgs/applications | |
parent | a819aea202336a32c658db4ce46300cdfb4399fb (diff) |
freedv: 1.9.7.2 -> 1.9.8
Diffstat (limited to 'pkgs/applications')
-rw-r--r-- | pkgs/applications/radio/freedv/default.nix | 6 |
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 ''; |