httplz: fix for rust 1.65

This commit is contained in:
Theodore Ni 2022-12-06 13:51:46 -08:00
parent fa81d500a3
commit abbfe517bd
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

View file

@ -1,6 +1,7 @@
{ lib
, rustPlatform
, fetchCrate
, fetchpatch
, installShellFiles
, makeWrapper
, pkg-config
@ -21,6 +22,15 @@ rustPlatform.buildRustPackage rec {
sha256 = "sha256-+nCqMTLrBYNQvoKo1PzkyzRCkKdlE88+NYoJcIlAJts=";
};
patches = [
# https://github.com/thecoshman/http/pull/151
(fetchpatch {
name = "fix-rust-1.65-compile.patch";
url = "https://github.com/thecoshman/http/commit/6e4c8e97cce09d0d18d4936f90aa643659d813fc.patch";
hash = "sha256-mXclXfp2Nzq6Pr9VFmxiOzECGZEQRNOAcXoKhiOyuFs=";
})
];
cargoSha256 = "sha256-odiVIfNJPpagoASnYvdOosHXa37gbQM8Zmvtnao0pAs=";
nativeBuildInputs = [