lol

Merge pull request #198896 from fabaff/libreddit-bump

libreddit: 0.22.9 -> 0.23.1

authored by

Fabian Affolter and committed by
GitHub
bf58b9f2 a7fbe87b

+8 -6
+8 -6
pkgs/servers/libreddit/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "libreddit"; 11 - version = "0.22.9"; 11 + version = "0.23.1"; 12 12 13 13 src = fetchFromGitHub { 14 - owner = "spikecodes"; 14 + owner = "libreddit"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-xsWV3DWAFekWliFRdea2J+Mygl/58d92qTXJ7/4YVEg="; 17 + hash = "sha256-qO9AgEAm+wK8LAlUOYIKYTXJYT3yz65UWAFTf711+5w="; 18 18 }; 19 19 20 - cargoSha256 = "sha256-eLfKfl7CYH2V9WJksLps6uAckQEPB5dFKBY2B6CMa/8="; 20 + cargoSha256 = "sha256-ApZLYKavYt1Zp7qvdbhBXPBj7qv/D/oZp5lK2sfWnDI="; 21 21 22 - buildInputs = lib.optional stdenv.isDarwin Security; 22 + buildInputs = lib.optional stdenv.isDarwin [ 23 + Security 24 + ]; 23 25 24 26 passthru.tests = { 25 27 inherit (nixosTests) libreddit; ··· 27 29 28 30 meta = with lib; { 29 31 description = "Private front-end for Reddit"; 30 - homepage = "https://github.com/spikecodes/libreddit"; 32 + homepage = "https://github.com/libreddit/libreddit"; 31 33 license = with licenses; [ agpl3Only ]; 32 34 maintainers = with maintainers; [ fab jojosch ]; 33 35 };