Unverified Commit 4852cf0b authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #203069 from r-ryantm/auto-update/libreddit

libreddit: 0.24.0 -> 0.24.1
parents d4e669b7 ae03537f
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -8,16 +8,16 @@

rustPlatform.buildRustPackage rec {
  pname = "libreddit";
  version = "0.24.0";
  version = "0.24.1";

  src = fetchFromGitHub {
    owner = "libreddit";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-I/LPCPAZLltb55TBBS3NE2oU97Dx3L/dHLaEVkVBTGA=";
    rev = "refs/tags/v${version}";
    hash = "sha256-LS9yUjKv0GxK6wGo0f5jHAn7vyo+tvgHd3NWLYpAQOs=";
  };

  cargoSha256 = "sha256-0Udwnvf60sumAeGtaxyiHbkWYMvNjwcWX9W1m3CUvb8=";
  cargoSha256 = "sha256-14tJLhWITCz/e+XuCww2GVZ+sXy08LQe+DpL4tkLUzE=";

  buildInputs = lib.optional stdenv.isDarwin [
    Security
@@ -30,6 +30,7 @@ rustPlatform.buildRustPackage rec {
  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 ];
  };