Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
563 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildGoModule,
keybase,
}:
buildGoModule {
pname = "kbfs";
inherit (keybase) src version vendorHash;
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 = "Keybase filesystem";
maintainers = with maintainers; [
avaq
rvolosatovs
bennofs
np
shofius
];
license = licenses.bsd3;
};
}