radicle-cli: fix build by re-adding git to nativeCheckInputs
This commit is contained in:
parent
ccd5c434cc
commit
49c92de87a
1 changed files with 5 additions and 1 deletions
|
@ -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)
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue