about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/keybase/kbfs.nix
blob: aad08d1a399431daf6eb629f3f6f70acd0a520a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildGoModule, keybase }:

buildGoModule {
  pname = "kbfs";

  inherit (keybase) src version vendorSha256;

  modRoot = "go";
  subPackages = [ "kbfs/kbfsfuse" "kbfs/redirector" "kbfs/kbfsgit/git-remote-keybase" ];

  tags = [ "production" ];
  ldflags = [ "-s" "-w" ];

  meta = with lib; {
    homepage = "https://keybase.io/docs/kbfs";
    description = "The Keybase filesystem";
    maintainers = with maintainers; [ avaq rvolosatovs bennofs np shofius ];
    license = licenses.bsd3;
  };
}