2022-12-04T07:05:40 libreddit 0.24.2 -> 0.25.0 https://github.com/libreddit/libreddit/releases 2022-12-04T07:05:42 attrpath: libreddit 2022-12-04T07:05:42 Checking auto update branch... 2022-12-04T07:05:42 No auto update branch exists 2022-12-04T07:05:43 Old version 0.24.2" not present in master derivation file with contents: { lib , stdenv , nixosTests , rustPlatform , fetchFromGitHub , Security }: rustPlatform.buildRustPackage rec { pname = "libreddit"; version = "0.25.0"; src = fetchFromGitHub { owner = "libreddit"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-IIL06jhl9wMLQTQtr96kq4Kkf2oGO3xxJxcB9Y34iUk="; }; cargoSha256 = "sha256-uIr8aUDErHVUKML2l6nITSBpOxqg3h1Md0948BxvutI="; buildInputs = lib.optional stdenv.isDarwin [ Security ]; passthru.tests = { inherit (nixosTests) libreddit; }; meta = with lib; { description = "Private front-end for Reddit"; homepage = "https://github.com/libreddit/libreddit"; changelog = "https://github.com/libreddit/libreddit/releases/tag/v${version}"; license = with licenses; [ agpl3Only ]; maintainers = with maintainers; [ fab jojosch ]; }; }