Merge pull request #200657 from aaronjheng/go-mtpfs

authored by

Martin Weinelt and committed by
GitHub
25faee19 11b5fc23

+2 -1
+2 -1
pkgs/tools/filesystems/go-mtpfs/default.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, pkg-config, libusb1 }: 1 + { lib, stdenv, buildGoModule, fetchFromGitHub, pkg-config, libusb1 }: 2 2 3 3 buildGoModule rec { 4 4 pname = "go-mtpfs"; ··· 29 29 homepage = "https://github.com/hanwen/go-mtpfs"; 30 30 license = licenses.bsd3; 31 31 maintainers = with maintainers; [ aaronjheng ]; 32 + broken = stdenv.isDarwin; 32 33 }; 33 34 }