Merge pull request #216233 from amesgen/fix-radicle-cli-build

radicle-cli: fix build by re-adding `git` to `nativeCheckInputs`
This commit is contained in:
Nick Cao
2023-02-14 09:21:50 +08:00
committed by GitHub
@@ -10,7 +10,10 @@
, openssl
, libusb1
, AppKit
, git
, openssh
, testers
, radicle-cli
}:
rustPlatform.buildRustPackage rec {
@@ -50,11 +53,18 @@ rustPlatform.buildRustPackage rec {
done
'';
nativeCheckInputs = [ openssh ];
nativeCheckInputs = [
git
openssh
];
preCheck = ''
eval $(ssh-agent)
'';
passthru.tests = {
version = testers.testVersion { package = radicle-cli; };
};
meta = {
description = "Command-line tooling for Radicle, a decentralized code collaboration network";
homepage = "https://radicle.xyz";