2019-10-17 15:53:45 +02:00
|
|
|
{ stdenv, substituteAll, buildGoPackage, fetchFromGitHub, fuse, osxfuse, keybase }:
|
2019-07-06 12:31:43 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
buildGoPackage {
|
2019-07-06 12:31:43 +02:00
|
|
|
pname = "kbfs";
|
|
|
|
|
|
|
|
inherit (keybase) src version;
|
|
|
|
|
|
|
|
goPackagePath = "github.com/keybase/client";
|
|
|
|
subPackages = [ "go/kbfs/kbfsfuse" "go/kbfs/kbfsgit/git-remote-keybase" ];
|
|
|
|
|
|
|
|
dontRenameImports = true;
|
|
|
|
|
2019-10-17 15:53:45 +02:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths-kbfs.patch;
|
|
|
|
fusermount = "${fuse}/bin/fusermount";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-07-06 12:31:43 +02:00
|
|
|
buildFlags = [ "-tags production" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-07-06 12:35:35 +02:00
|
|
|
homepage = "https://keybase.io/docs/kbfs";
|
|
|
|
description = "The Keybase filesystem";
|
2019-07-06 12:31:43 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ rvolosatovs bennofs np ];
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|