Merge pull request #152647 from jojosch/libreddit-update

libreddit: 0.21.2 -> 0.21.4
This commit is contained in:
Bobby Rong 2021-12-30 16:53:02 +08:00 committed by GitHub
commit f2b3b7f24a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,16 +8,16 @@
rustPlatform.buildRustPackage rec {
pname = "libreddit";
version = "0.21.2";
version = "0.21.4";
src = fetchFromGitHub {
owner = "spikecodes";
repo = pname;
rev = "v${version}";
sha256 = "sha256-NlAalhKsku9dJ3xZjXdI70QAltwWaHGLMYpWCRqU2Lk=";
sha256 = "sha256-9Qr1afzp5BwcnJ4WjACJQk4NA81JTnNBmZZNFMZ6FvU=";
};
cargoSha256 = "sha256-FzV61UtSn86llAlp4/ceVkFaN6W88OjrVsaLA7LoUhs=";
cargoSha256 = "sha256-HD6asNFb0ZICeXnUwF4ZZ568GJRPeSy4XwflpIuWJw8=";
buildInputs = lib.optional stdenv.isDarwin Security;
@ -29,6 +29,6 @@ rustPlatform.buildRustPackage rec {
description = "Private front-end for Reddit";
homepage = "https://github.com/spikecodes/libreddit";
license = with licenses; [ agpl3Only ];
maintainers = with maintainers; [ fab ];
maintainers = with maintainers; [ fab jojosch ];
};
}