Merge pull request #200657 from aaronjheng/go-mtpfs

This commit is contained in:
Martin Weinelt 2022-11-11 10:43:35 +01:00 committed by GitHub
commit 25faee19ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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