about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-01-04 20:49:18 -0500
committerGitHub <noreply@github.com>2023-01-04 20:49:18 -0500
commit479053aa0b2e8ca7e0b945ea14e73a9f4647122b (patch)
treeda2390498b996723944b5ccdf979b2dc68411aec /pkgs
parent9fcedd1a59bc0d9cc31a4824a3496f51c71acd06 (diff)
parent04b8fc708819af8e324460a0bf9758804f0f8af3 (diff)
Merge pull request #209015 from jojosch/libreddit-update
libreddit: 0.25.1 -> 0.27.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/servers/libreddit/default.nix16
1 files changed, 13 insertions, 3 deletions
diff --git a/pkgs/servers/libreddit/default.nix b/pkgs/servers/libreddit/default.nix
index ba609526015d8..4dbc9f6a5050d 100644
--- a/pkgs/servers/libreddit/default.nix
+++ b/pkgs/servers/libreddit/default.nix
@@ -3,21 +3,31 @@
 , nixosTests
 , rustPlatform
 , fetchFromGitHub
+, fetchpatch
 , Security
 }:
 
 rustPlatform.buildRustPackage rec {
   pname = "libreddit";
-  version = "0.25.1";
+  version = "0.27.0";
 
   src = fetchFromGitHub {
     owner = "libreddit";
     repo = pname;
     rev = "refs/tags/v${version}";
-    hash = "sha256-/K79EHjqkclyh1AmRaevYcyUD4XSrTfd5zjnpOmBNcE=";
+    hash = "sha256-+sSzYewqN3VjTl+wjgan3yxlFiuCg2rprJDpDktuQHo=";
   };
 
-  cargoSha256 = "sha256-KYuEy5MwgdiHHbDDNyb+NVYyXdvx1tCH7dQdPWCCfQo=";
+  cargoSha256 = "sha256-HhtslN6JV9DUBhuyesciZGGYVz7mvpdyxVps9xAc+Rs=";
+
+  patches = [
+    # https://github.com/libreddit/libreddit/pull/687
+    (fetchpatch {
+      name = "fix-cfg-test.patch";
+      url = "https://github.com/libreddit/libreddit/commit/dff91da8777dc42d38abf8b5d63addbd71fdabff.patch";
+      sha256 = "sha256-6np5gf8cyKotF7KJ19mCtRAF7SxDpNFpQCgdy/XDsng=";
+    })
+  ];
 
   buildInputs = lib.optionals stdenv.isDarwin [
     Security