python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / filesystems / go-mtpfs / default.nix
blob260e6891f956ee789dbb6f0686ba24c364b19f5b
1 { lib, buildGoModule, fetchFromGitHub, pkg-config, libusb1 }:
3 buildGoModule rec {
4   pname = "go-mtpfs";
5   version = "1.0.0";
7   src = fetchFromGitHub {
8     owner = "hanwen";
9     repo = "go-mtpfs";
10     rev = "v${version}";
11     sha256 = "sha256-HVfB8/MImgZZLx4tcrlYOfQjpAdHMHshEaSsd+n758w=";
12   };
14   vendorSha256 = "sha256-OrAEvD2rF0Y0bvCD9TUv/E429lASsvC3uK3qNvbg734=";
16   ldflags = [ "-s" "-w" ];
18   nativeBuildInputs = [ pkg-config ];
19   buildInputs = [ libusb1 ];
21   preCheck = ''
22     # Only run tests under mtp/encoding_test.go
23     # Other tests require an Android deviced attached over USB.
24     buildFlagsArray+=("-run" "Test(Encode|Decode|Variant).*")
25   '';
27   meta = with lib; {
28     description = "A simple FUSE filesystem for mounting Android devices as a MTP device";
29     homepage = "https://github.com/hanwen/go-mtpfs";
30     license = licenses.bsd3;
31     maintainers = with maintainers; [ aaronjheng ];
32   };