Revert "gitAndTools.gh: fix build on darwin"

This reverts commit a51275f3b5.

Not needed now that Security is propagated via go in 0bba7474b3
This commit is contained in:
zowoq 2020-03-29 09:32:01 +10:00
parent 596b601dfa
commit 2ae5cf317f
2 changed files with 3 additions and 6 deletions

View File

@ -30,9 +30,7 @@ let
diff-so-fancy = callPackage ./diff-so-fancy { };
gh = callPackage ./gh {
inherit (darwin.apple_sdk.frameworks) Security;
};
gh = callPackage ./gh { };
ghq = callPackage ./ghq { };

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, buildGoModule, installShellFiles, Security }:
{ lib, fetchFromGitHub, buildGoModule, installShellFiles }:
buildGoModule rec {
pname = "gh";
@ -20,7 +20,6 @@ buildGoModule rec {
subPackages = [ "cmd/gh" ];
nativeBuildInputs = [ installShellFiles ];
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
postInstall = ''
for shell in bash fish zsh; do
$out/bin/gh completion -s $shell > gh.$shell
@ -28,7 +27,7 @@ buildGoModule rec {
done
'';
meta = with stdenv.lib; {
meta = with lib; {
description = "GitHub CLI tool";
homepage = "https://cli.github.com/";
license = licenses.mit;