We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c59049b commit 9a52b65Copy full SHA for 9a52b65
pkgs/by-name/fr/freedv/package.nix
@@ -18,6 +18,7 @@
18
wxGTK32,
19
sioclient,
20
pulseSupport ? config.pulseaudio or stdenv.hostPlatform.isLinux,
21
+ nix-update-script,
22
}:
23
24
stdenv.mkDerivation (finalAttrs: {
@@ -75,6 +76,14 @@ stdenv.mkDerivation (finalAttrs: {
75
76
makeWrapper $out/Applications/FreeDV.app/Contents/MacOS/FreeDV $out/bin/freedv
77
'';
78
79
+ passthru.updateScript = nix-update-script {
80
+ extraArgs = [
81
+ # avoid pre‐releases
82
+ "--version-regex"
83
+ ''^v(\d\.\d\.\d(\.\d)?)$''
84
+ ];
85
+ };
86
+
87
meta = {
88
homepage = "https://freedv.org/";
89
description = "Digital voice for HF radio";
0 commit comments