flex-ncat: use finalAttrs pattern

+4 -4
+4 -4
pkgs/by-name/fl/flex-ncat/package.nix
··· 5 nix-update-script, 6 }: 7 8 - buildGoModule rec { 9 pname = "flex-ncat"; 10 version = "0.6-20250801.0"; 11 12 src = fetchFromGitHub { 13 owner = "kc2g-flex-tools"; 14 repo = "nCAT"; 15 - tag = "v${version}"; 16 hash = "sha256-l+A7PlckZFGwibMU5QelMzANP1WS5WPApOnQV0P+SGw="; 17 }; 18 ··· 23 meta = { 24 homepage = "https://github.com/kc2g-flex-tools/nCAT"; 25 description = "FlexRadio remote control (CAT) via hamlib/rigctl protocol"; 26 - changelog = "https://github.com/kc2g-flex-tools/nCAT/releases/tag/v${version}"; 27 license = lib.licenses.mit; 28 maintainers = with lib.maintainers; [ mvs ]; 29 mainProgram = "nCAT"; 30 }; 31 - }
··· 5 nix-update-script, 6 }: 7 8 + buildGoModule (finalAttrs: { 9 pname = "flex-ncat"; 10 version = "0.6-20250801.0"; 11 12 src = fetchFromGitHub { 13 owner = "kc2g-flex-tools"; 14 repo = "nCAT"; 15 + tag = "v${finalAttrs.version}"; 16 hash = "sha256-l+A7PlckZFGwibMU5QelMzANP1WS5WPApOnQV0P+SGw="; 17 }; 18 ··· 23 meta = { 24 homepage = "https://github.com/kc2g-flex-tools/nCAT"; 25 description = "FlexRadio remote control (CAT) via hamlib/rigctl protocol"; 26 + changelog = "https://github.com/kc2g-flex-tools/nCAT/releases/tag/v${finalAttrs.version}"; 27 license = lib.licenses.mit; 28 maintainers = with lib.maintainers; [ mvs ]; 29 mainProgram = "nCAT"; 30 }; 31 + })