kbfs: 2.11.0 -> 4.1.0
The kbfs code has been moved to the same repo as the keybase package.
This commit is contained in:
parent
c210b8b5f1
commit
bfe270bc54
@ -1,28 +0,0 @@
|
|||||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
||||||
|
|
||||||
buildGoPackage rec {
|
|
||||||
name = "kbfs-${version}";
|
|
||||||
version = "2.11.0";
|
|
||||||
|
|
||||||
goPackagePath = "github.com/keybase/kbfs";
|
|
||||||
subPackages = [ "kbfsfuse" "kbfsgit/git-remote-keybase" ];
|
|
||||||
|
|
||||||
dontRenameImports = true;
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "keybase";
|
|
||||||
repo = "kbfs";
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "1qlns7vpyj3ivm7d3vvlmx3iksl7hpcg87yh30f3n64c8jk0xc83";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildFlags = [ "-tags production" ];
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
homepage = https://www.keybase.io;
|
|
||||||
description = "The Keybase FS FUSE driver";
|
|
||||||
platforms = platforms.unix;
|
|
||||||
maintainers = with maintainers; [ rvolosatovs bennofs np ];
|
|
||||||
license = licenses.bsd3;
|
|
||||||
};
|
|
||||||
}
|
|
22
pkgs/tools/security/keybase/kbfs.nix
Normal file
22
pkgs/tools/security/keybase/kbfs.nix
Normal 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://www.keybase.io;
|
||||||
|
description = "The Keybase FS FUSE driver";
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ rvolosatovs bennofs np ];
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
}
|
@ -3986,7 +3986,7 @@ in
|
|||||||
inherit (darwin.apple_sdk.frameworks) AVFoundation AudioToolbox ImageIO CoreMedia Foundation CoreGraphics MediaToolbox;
|
inherit (darwin.apple_sdk.frameworks) AVFoundation AudioToolbox ImageIO CoreMedia Foundation CoreGraphics MediaToolbox;
|
||||||
};
|
};
|
||||||
|
|
||||||
kbfs = callPackage ../tools/security/kbfs { };
|
kbfs = callPackage ../tools/security/keybase/kbfs.nix { };
|
||||||
|
|
||||||
keybase-gui = callPackage ../tools/security/keybase/gui.nix { };
|
keybase-gui = callPackage ../tools/security/keybase/gui.nix { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user