nixpkgs/pkgs/tools/security/keybase/kbfs.nix
figsoda f97ce0a9a8 pkgs/tools/security: remove dead code
with the help of deadnix & nil
2023-07-12 14:35:00 -04:00

21 lines
504 B
Nix

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