libreddit: 0.25.1 -> 0.27.0

This commit is contained in:
Johannes Schleifenbaum 2023-01-04 10:53:28 +01:00
parent aa371581dd
commit 04b8fc7088
No known key found for this signature in database
GPG key ID: 059093B1A278BCD0

View file

@ -3,21 +3,31 @@
, nixosTests , nixosTests
, rustPlatform , rustPlatform
, fetchFromGitHub , fetchFromGitHub
, fetchpatch
, Security , Security
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "libreddit"; pname = "libreddit";
version = "0.25.1"; version = "0.27.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "libreddit"; owner = "libreddit";
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; 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 [ buildInputs = lib.optionals stdenv.isDarwin [
Security Security