gh: enable tests

wip/yesman
Drew Risinger 3 years ago committed by zowoq
parent 64b79a2767
commit c7deb49058
  1. 13
      pkgs/applications/version-management/git-and-tools/gh/default.nix

@ -1,4 +1,9 @@
{ lib, fetchFromGitHub, buildGoModule, installShellFiles }:
{ lib
, fetchFromGitHub
, buildGoModule
, installShellFiles
, git
}:
buildGoModule rec {
pname = "gh";
@ -30,8 +35,10 @@ buildGoModule rec {
done
'';
# fails with `unable to find git executable in PATH`
doCheck = false;
checkInputs = [ git ];
checkPhase = ''
make test
'';
meta = with lib; {
description = "GitHub CLI tool";

Loading…
Cancel
Save