mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
20 lines
498 B
Nix
20 lines
498 B
Nix
{ 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;
|
|
};
|
|
}
|