Merge pull request #201030 from aaronjheng/zhf/docui

docui: mark as broken on darwin
This commit is contained in:
Mario Rodas 2022-11-13 10:42:17 -05:00 committed by GitHub
commit 41ba1e1971
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "docui";
@ -17,7 +17,7 @@ buildGoModule rec {
description = "TUI Client for Docker";
homepage = "https://github.com/skanehira/docui";
license = licenses.mit;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ aethelz ];
broken = stdenv.isDarwin;
};
}