1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

docui: fix build on darwin

This commit is contained in:
Mario Rodas 2020-03-21 04:36:00 -05:00
parent 028d53e996
commit 203e2ca6f9
2 changed files with 6 additions and 2 deletions

View file

@ -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";

View file

@ -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 { };