newsraft 0.21 -> 0.22 https://repology.org/project/newsraft/versions attrpath: newsraft Checking auto update branch... No auto update branch exists Old version 0.21" not present in master derivation file with contents: { lib , stdenv , fetchFromGitea , pkg-config , curl , expat , gumbo , ncurses , sqlite , yajl }: stdenv.mkDerivation rec { pname = "newsraft"; version = "0.22"; src = fetchFromGitea { domain = "codeberg.org"; owner = "newsraft"; repo = "newsraft"; rev = "newsraft-${version}"; hash = "sha256-QjIADDk1PSZP89+G7B1Bpu3oTEAykD4RJYghZnMJKho="; }; nativeBuildInputs = [ pkg-config ]; buildInputs = [ curl expat gumbo ncurses sqlite yajl ]; makeFlags = [ "PREFIX=$(out)" ]; meta = with lib; { description = "Feed reader for terminal"; homepage = "https://codeberg.org/grisha/newsraft"; license = licenses.isc; maintainers = with maintainers; [ arthsmn ]; mainProgram = "newsraft"; platforms = platforms.all; }; }