Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
kbfs: 2.11.0 -> 4.1.0
Browse files Browse the repository at this point in the history
The kbfs code has been moved to the same
repo as the keybase package.
  • Loading branch information
worldofpeace committed Jul 6, 2019
1 parent c210b8b commit bfe270b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 29 deletions.
28 changes: 0 additions & 28 deletions pkgs/tools/security/kbfs/default.nix

This file was deleted.

22 changes: 22 additions & 0 deletions pkgs/tools/security/keybase/kbfs.nix
@@ -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;
};
}
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -3986,7 +3986,7 @@ in
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 { };

Expand Down

0 comments on commit bfe270b

Please sign in to comment.