radicle-cli: fix build by re-adding git to nativeCheckInputs

This commit is contained in:
amesgen 2023-02-13 22:44:20 +01:00
parent ccd5c434cc
commit 49c92de87a
No known key found for this signature in database
GPG key ID: 1A89EC203635A13D

View file

@ -10,6 +10,7 @@
, openssl
, libusb1
, AppKit
, git
, openssh
}:
@ -50,7 +51,10 @@ rustPlatform.buildRustPackage rec {
done
'';
nativeCheckInputs = [ openssh ];
nativeCheckInputs = [
git
openssh
];
preCheck = ''
eval $(ssh-agent)
'';