Merge staging-next into staging

This commit is contained in:
Frederik Rietdijk
2019-07-09 15:46:26 +02:00
102 changed files with 2944 additions and 1758 deletions
+22
View File
@@ -0,0 +1,22 @@
{ stdenv, buildGoPackage, fetchFromGitHub, keybase }:
buildGoPackage rec {
pname = "kbfs";
inherit (keybase) src version;
goPackagePath = "github.com/keybase/client";
subPackages = [ "go/kbfs/kbfsfuse" "go/kbfs/kbfsgit/git-remote-keybase" ];
dontRenameImports = true;
buildFlags = [ "-tags production" ];
meta = with stdenv.lib; {
homepage = "https://keybase.io/docs/kbfs";
description = "The Keybase filesystem";
platforms = platforms.unix;
maintainers = with maintainers; [ rvolosatovs bennofs np ];
license = licenses.bsd3;
};
}