freedv: 2.0.0 -> 2.0.1 (#427049)

authored by Weijia Wang and committed by GitHub cad28708 f5ad88e0

+11 -3
+11 -3
pkgs/by-name/fr/freedv/package.nix
··· 34 in 35 stdenv.mkDerivation (finalAttrs: { 36 pname = "freedv"; 37 - version = "2.0.0"; 38 39 src = fetchFromGitHub { 40 owner = "drowe67"; 41 repo = "freedv-gui"; 42 tag = "v${finalAttrs.version}"; 43 - hash = "sha256-3vwFB+3LloumEAGlSJZc2+/I8uI6KLP/KuDGeDOj87k="; 44 }; 45 46 patches = [ ··· 58 --replace-fail "GIT_REPOSITORY https://github.com/drowe67/radae.git" "URL $(realpath radae)" \ 59 --replace-fail "GIT_TAG main" "" 60 patchShebangs test/test_*.sh 61 '' 62 + lib.optionalString stdenv.hostPlatform.isDarwin '' 63 substituteInPlace CMakeLists.txt \ ··· 74 python3 75 ] 76 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 77 - macdylibbundler 78 makeWrapper 79 darwin.autoSignDarwinBinariesHook 80 darwin.sigtool
··· 34 in 35 stdenv.mkDerivation (finalAttrs: { 36 pname = "freedv"; 37 + version = "2.0.1"; 38 39 src = fetchFromGitHub { 40 owner = "drowe67"; 41 repo = "freedv-gui"; 42 tag = "v${finalAttrs.version}"; 43 + hash = "sha256-+hVh5GgSz8MWib10dVV6gx9EvocvLAJm2Eid/4y//2E="; 44 }; 45 46 patches = [ ··· 58 --replace-fail "GIT_REPOSITORY https://github.com/drowe67/radae.git" "URL $(realpath radae)" \ 59 --replace-fail "GIT_TAG main" "" 60 patchShebangs test/test_*.sh 61 + substituteInPlace cmake/CheckGit.cmake \ 62 + --replace-fail "git describe --abbrev=4 --always HEAD" "echo v${finalAttrs.version}" 63 '' 64 + lib.optionalString stdenv.hostPlatform.isDarwin '' 65 substituteInPlace CMakeLists.txt \ ··· 76 python3 77 ] 78 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 79 + (macdylibbundler.overrideAttrs { 80 + # incompatible with darwin.sigtool in Nixpkgs 81 + postPatch = '' 82 + substituteInPlace src/Utils.cpp \ 83 + --replace-fail "--deep --preserve-metadata=entitlements,requirements,flags,runtime" "" 84 + ''; 85 + }) 86 makeWrapper 87 darwin.autoSignDarwinBinariesHook 88 darwin.sigtool