newsboat: 2.32 -> 2.33

remove with lib

+7 -7
+7 -7
pkgs/applications/networking/feedreaders/newsboat/default.nix
··· 3 4 rustPlatform.buildRustPackage rec { 5 pname = "newsboat"; 6 - version = "2.32"; 7 8 src = fetchFromGitHub { 9 owner = "newsboat"; 10 repo = "newsboat"; 11 rev = "r${version}"; 12 - hash = "sha256-ACPnCm2cu9BEpMd02t+G4mg6DZ8jCydfK4p+Ad87Hek="; 13 }; 14 15 - cargoHash = "sha256-HHc8HSNWoBkDR7lQgvXUML5ly8sShDn16DWNf/Jig2g="; 16 17 # TODO: Check if that's still needed 18 postPatch = lib.optionalString stdenv.isDarwin '' ··· 59 updateScript = nix-update-script { }; 60 }; 61 62 - meta = with lib; { 63 homepage = "https://newsboat.org/"; 64 changelog = "https://github.com/newsboat/newsboat/blob/${src.rev}/CHANGELOG.md"; 65 description = "A fork of Newsbeuter, an RSS/Atom feed reader for the text console"; 66 - maintainers = with maintainers; [ dotlambda nicknovitski ]; 67 - license = licenses.mit; 68 - platforms = platforms.unix; 69 }; 70 }
··· 3 4 rustPlatform.buildRustPackage rec { 5 pname = "newsboat"; 6 + version = "2.33"; 7 8 src = fetchFromGitHub { 9 owner = "newsboat"; 10 repo = "newsboat"; 11 rev = "r${version}"; 12 + hash = "sha256-p9cyH5jANkB+PuvAq6KjaelgPwj1f7XNxuKMpT7jjpg="; 13 }; 14 15 + cargoHash = "sha256-95xM4kZZ70xhfx+EvqFecYbVdisq9hpgp0t+s5Cp8QQ="; 16 17 # TODO: Check if that's still needed 18 postPatch = lib.optionalString stdenv.isDarwin '' ··· 59 updateScript = nix-update-script { }; 60 }; 61 62 + meta = { 63 homepage = "https://newsboat.org/"; 64 changelog = "https://github.com/newsboat/newsboat/blob/${src.rev}/CHANGELOG.md"; 65 description = "A fork of Newsbeuter, an RSS/Atom feed reader for the text console"; 66 + maintainers = with lib.maintainers; [ dotlambda nicknovitski ]; 67 + license = lib.licenses.mit; 68 + platforms = lib.platforms.unix; 69 }; 70 }