depot/third_party/nixpkgs/pkgs/tools/security/keybase/kbfs.nix

21 lines
504 B
Nix
Raw Normal View History

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