docui: mark as broken on darwin

This commit is contained in:
Aaron Jheng 2022-11-13 13:55:51 +00:00
parent 9f0ebc3f63
commit ecf9e1600e
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

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