fast-ssh: fix build issue due to ambiguous trait impls

See this upstream PR: https://github.com/Julien-R44/fast-ssh/pull/22
This commit is contained in:
Manuel Frischknecht 2023-12-24 01:49:06 +00:00
parent 57cea6b6fd
commit 5fc2b855c1

View file

@ -1,6 +1,7 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, rustPlatform
, Security
}:
@ -18,6 +19,15 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "sha256-sIQNoH3UWX3SwCFCPZEREIFR7C28ml4oGsrq6wuOAT0=";
patches = [
# Can be removed as soon as this is is merged: https://github.com/Julien-R44/fast-ssh/pull/22
(fetchpatch {
name = "fix-ambiguous-as_ref.patch";
url = "https://github.com/Julien-R44/fast-ssh/commit/c082a64a4b412380b2ab145c24161fdaa26175db.patch";
hash = "sha256-egkoJF+rQiuClNL8ltzmB7oHngbpOxO29rlwZ3nELOE=";
})
];
buildInputs = lib.optional stdenv.isDarwin Security;
meta = with lib; {