flex-ndax: use finalAttrs pattern

+4 -4
+4 -4
pkgs/by-name/fl/flex-ndax/package.nix
··· 7 nix-update-script, 8 }: 9 10 - buildGoModule rec { 11 pname = "flex-ndax"; 12 version = "0.5-20250801.0"; 13 14 src = fetchFromGitHub { 15 owner = "kc2g-flex-tools"; 16 repo = "nDAX"; 17 - tag = "v${version}"; 18 hash = "sha256-2yHv1FSikQuPamAwSzZB6+ZoblFoD/8Jnvhhv9OO+VY="; 19 }; 20 ··· 28 broken = stdenv.hostPlatform.isDarwin; 29 homepage = "https://github.com/kc2g-flex-tools/nDAX"; 30 description = "FlexRadio digital audio transport (DAX) connector for PulseAudio"; 31 - changelog = "https://github.com/kc2g-flex-tools/nDAX/releases/tag/v${version}"; 32 license = lib.licenses.mit; 33 maintainers = with lib.maintainers; [ mvs ]; 34 mainProgram = "nDAX"; 35 }; 36 - }
··· 7 nix-update-script, 8 }: 9 10 + buildGoModule (finalAttrs: { 11 pname = "flex-ndax"; 12 version = "0.5-20250801.0"; 13 14 src = fetchFromGitHub { 15 owner = "kc2g-flex-tools"; 16 repo = "nDAX"; 17 + tag = "v${finalAttrs.version}"; 18 hash = "sha256-2yHv1FSikQuPamAwSzZB6+ZoblFoD/8Jnvhhv9OO+VY="; 19 }; 20 ··· 28 broken = stdenv.hostPlatform.isDarwin; 29 homepage = "https://github.com/kc2g-flex-tools/nDAX"; 30 description = "FlexRadio digital audio transport (DAX) connector for PulseAudio"; 31 + changelog = "https://github.com/kc2g-flex-tools/nDAX/releases/tag/v${finalAttrs.version}"; 32 license = lib.licenses.mit; 33 maintainers = with lib.maintainers; [ mvs ]; 34 mainProgram = "nDAX"; 35 }; 36 + })