forked from mirrors/nixpkgs
docui: fix build on darwin
This commit is contained in:
parent
028d53e996
commit
203e2ca6f9
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "docui";
|
||||
|
@ -13,6 +13,8 @@ buildGoModule rec {
|
|||
|
||||
modSha256 = "1wyx05kk4f41mgvwnvfc9xk7vd3x96cbn5xb5ph7p443f70ydnak";
|
||||
|
||||
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "TUI Client for Docker";
|
||||
homepage = "https://github.com/skanehira/docui";
|
||||
|
|
|
@ -215,7 +215,9 @@ in
|
|||
|
||||
docker-sync = callPackage ../tools/misc/docker-sync { };
|
||||
|
||||
docui = callPackage ../tools/misc/docui { };
|
||||
docui = callPackage ../tools/misc/docui {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
dotfiles = callPackage ../applications/misc/dotfiles { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue