nak: 0.11.4 -> 0.13.2 (#406050)

authored by Felix Bargfeldt and committed by GitHub 8177318f d3c31920

+10 -9
+10 -9
pkgs/by-name/na/nak/package.nix
··· 1 { 2 lib, 3 - buildGo123Module, 4 fetchFromGitHub, 5 versionCheckHook, 6 nix-update-script, 7 }: 8 - buildGo123Module rec { 9 pname = "nak"; 10 - version = "0.11.4"; 11 12 src = fetchFromGitHub { 13 owner = "fiatjaf"; 14 repo = "nak"; 15 - tag = "v${version}"; 16 - hash = "sha256-xFATXMK7wyEgnJXmTq9BdW27xqgXUP1Mo0m5QhFIv0I="; 17 }; 18 19 - vendorHash = "sha256-VkeQLWtyDfZiR0nrhmd5KCi/BIuqrFem9WhcTd3VRcc="; 20 21 ldflags = [ 22 "-s" 23 "-w" 24 - "-X main.version=${version}" 25 ]; 26 27 # Integration tests fail (requires connection to relays) ··· 36 meta = { 37 description = "Command-line tool for Nostr things"; 38 homepage = "https://github.com/fiatjaf/nak"; 39 - changelog = "https://github.com/fiatjaf/nak/releases/tag/${src.tag}"; 40 license = lib.licenses.unlicense; 41 maintainers = with lib.maintainers; [ nartsiss ]; 42 mainProgram = "nak"; 43 }; 44 - }
··· 1 { 2 lib, 3 + buildGoModule, 4 fetchFromGitHub, 5 versionCheckHook, 6 nix-update-script, 7 }: 8 + 9 + buildGoModule (finalAttrs: { 10 pname = "nak"; 11 + version = "0.13.2"; 12 13 src = fetchFromGitHub { 14 owner = "fiatjaf"; 15 repo = "nak"; 16 + tag = "v${finalAttrs.version}"; 17 + hash = "sha256-Ecn3hIdGzwcUrfSvESCGAYlPo7Kf0425RJ4GBzVYGNs="; 18 }; 19 20 + vendorHash = "sha256-ZDOlQiSVe0hssTsMEtpwIKu5v5zH4RJ+Haq+zS0GTnc="; 21 22 ldflags = [ 23 "-s" 24 "-w" 25 + "-X main.version=${finalAttrs.version}" 26 ]; 27 28 # Integration tests fail (requires connection to relays) ··· 37 meta = { 38 description = "Command-line tool for Nostr things"; 39 homepage = "https://github.com/fiatjaf/nak"; 40 + changelog = "https://github.com/fiatjaf/nak/releases/tag/v${finalAttrs.version}"; 41 license = lib.licenses.unlicense; 42 maintainers = with lib.maintainers; [ nartsiss ]; 43 mainProgram = "nak"; 44 }; 45 + })