python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / keybase / kbfs.nix
blob52fedf3feef406b984446b906d011ae9fa1deef7
1 { lib, buildGoModule, fetchFromGitHub, keybase }:
3 buildGoModule {
4   pname = "kbfs";
6   inherit (keybase) src version vendorSha256;
8   modRoot = "go";
9   subPackages = [ "kbfs/kbfsfuse" "kbfs/redirector" "kbfs/kbfsgit/git-remote-keybase" ];
11   tags = [ "production" ];
12   ldflags = [ "-s" "-w" ];
14   meta = with lib; {
15     homepage = "https://keybase.io/docs/kbfs";
16     description = "The Keybase filesystem";
17     platforms = platforms.unix;
18     maintainers = with maintainers; [ avaq rvolosatovs bennofs np shofius ];
19     license = licenses.bsd3;
20   };