newsboat: 2.38 -> 2.39 (#392714)

authored by jopejoe1 and committed by GitHub bd258b9f aa119b54

+7 -7
+7 -7
pkgs/by-name/ne/newsboat/package.nix
··· 18 nix-update-script, 19 }: 20 21 - rustPlatform.buildRustPackage rec { 22 pname = "newsboat"; 23 - version = "2.38"; 24 25 src = fetchFromGitHub { 26 owner = "newsboat"; 27 repo = "newsboat"; 28 - rev = "r${version}"; 29 - hash = "sha256-RekP88qZ4VaH5JG190BbVrBHnoUr+UVWvFmdPeyY8Yw="; 30 }; 31 32 useFetchCargoVendor = true; 33 - cargoHash = "sha256-yIRw/WMdkuaZEzA0J1bvMzf+9JOLqc6S7lWJIfih4Gw="; 34 35 # TODO: Check if that's still needed 36 postPatch = lib.optionalString stdenv.hostPlatform.isDarwin '' ··· 109 110 meta = { 111 homepage = "https://newsboat.org/"; 112 - changelog = "https://github.com/newsboat/newsboat/blob/${src.rev}/CHANGELOG.md"; 113 description = "Fork of Newsbeuter, an RSS/Atom feed reader for the text console"; 114 maintainers = with lib.maintainers; [ 115 dotlambda ··· 119 platforms = lib.platforms.unix; 120 mainProgram = "newsboat"; 121 }; 122 - }
··· 18 nix-update-script, 19 }: 20 21 + rustPlatform.buildRustPackage (finalAttrs: { 22 pname = "newsboat"; 23 + version = "2.39"; 24 25 src = fetchFromGitHub { 26 owner = "newsboat"; 27 repo = "newsboat"; 28 + rev = "r${finalAttrs.version}"; 29 + hash = "sha256-ypAn9Z27S20f82wqsZIELO1DHN0deqcTHYA77ddtb8g="; 30 }; 31 32 useFetchCargoVendor = true; 33 + cargoHash = "sha256-LDv5Rrv5ZKs7cspPTWt49omvLWY01y1TDGrfl7Jea3g="; 34 35 # TODO: Check if that's still needed 36 postPatch = lib.optionalString stdenv.hostPlatform.isDarwin '' ··· 109 110 meta = { 111 homepage = "https://newsboat.org/"; 112 + changelog = "https://github.com/newsboat/newsboat/blob/${finalAttrs.src.rev}/CHANGELOG.md"; 113 description = "Fork of Newsbeuter, an RSS/Atom feed reader for the text console"; 114 maintainers = with lib.maintainers; [ 115 dotlambda ··· 119 platforms = lib.platforms.unix; 120 mainProgram = "newsboat"; 121 }; 122 + })