Unverified Commit 767aad5f authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

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

radicle-cli: fix build by re-adding `git` to `nativeCheckInputs`
parents 9ea8b9f2 58901b13
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -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";