My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/security/keybase/kbfs.nix

21 lines
553 B

{ lib, buildGoModule, fetchFromGitHub, 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";
platforms = platforms.unix;
maintainers = with maintainers; [ avaq rvolosatovs bennofs np shofius ];
license = licenses.bsd3;
};
}