go-mtpfs: mark as broken on darwin

This commit is contained in:
Aaron Jheng 2022-11-11 08:15:13 +00:00
parent 952871ce36
commit 8e6c833c85
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

View file

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub, pkg-config, libusb1 }:
{ lib, stdenv, buildGoModule, fetchFromGitHub, pkg-config, libusb1 }:
buildGoModule rec {
pname = "go-mtpfs";
@ -29,5 +29,6 @@ buildGoModule rec {
homepage = "https://github.com/hanwen/go-mtpfs";
license = licenses.bsd3;
maintainers = with maintainers; [ aaronjheng ];
broken = stdenv.isDarwin;
};
}