Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

kbfs: 2.11.0 -> 4.1.0

The kbfs code has been moved to the same
repo as the keybase package.

(cherry picked from commit bfe270bc54a2c09eceb84ddaf8eeb3ca78f38659)

+23 -29
-28
pkgs/tools/security/kbfs/default.nix
··· 1 - { stdenv, buildGoPackage, fetchFromGitHub }: 2 - 3 - buildGoPackage rec { 4 - name = "kbfs-${version}"; 5 - version = "2.11.0"; 6 - 7 - goPackagePath = "github.com/keybase/kbfs"; 8 - subPackages = [ "kbfsfuse" "kbfsgit/git-remote-keybase" ]; 9 - 10 - dontRenameImports = true; 11 - 12 - src = fetchFromGitHub { 13 - owner = "keybase"; 14 - repo = "kbfs"; 15 - rev = "v${version}"; 16 - sha256 = "1qlns7vpyj3ivm7d3vvlmx3iksl7hpcg87yh30f3n64c8jk0xc83"; 17 - }; 18 - 19 - buildFlags = [ "-tags production" ]; 20 - 21 - meta = with stdenv.lib; { 22 - homepage = https://www.keybase.io; 23 - description = "The Keybase FS FUSE driver"; 24 - platforms = platforms.unix; 25 - maintainers = with maintainers; [ rvolosatovs bennofs np ]; 26 - license = licenses.bsd3; 27 - }; 28 - }
···
+22
pkgs/tools/security/keybase/kbfs.nix
···
··· 1 + { stdenv, buildGoPackage, fetchFromGitHub, keybase }: 2 + 3 + buildGoPackage rec { 4 + pname = "kbfs"; 5 + 6 + inherit (keybase) src version; 7 + 8 + goPackagePath = "github.com/keybase/client"; 9 + subPackages = [ "go/kbfs/kbfsfuse" "go/kbfs/kbfsgit/git-remote-keybase" ]; 10 + 11 + dontRenameImports = true; 12 + 13 + buildFlags = [ "-tags production" ]; 14 + 15 + meta = with stdenv.lib; { 16 + homepage = https://www.keybase.io; 17 + description = "The Keybase FS FUSE driver"; 18 + platforms = platforms.unix; 19 + maintainers = with maintainers; [ rvolosatovs bennofs np ]; 20 + license = licenses.bsd3; 21 + }; 22 + }
+1 -1
pkgs/top-level/all-packages.nix
··· 3720 inherit (darwin.apple_sdk.frameworks) AVFoundation AudioToolbox ImageIO CoreMedia Foundation CoreGraphics MediaToolbox; 3721 }; 3722 3723 - kbfs = callPackage ../tools/security/kbfs { }; 3724 3725 keybase-gui = callPackage ../tools/security/keybase/gui.nix { }; 3726
··· 3720 inherit (darwin.apple_sdk.frameworks) AVFoundation AudioToolbox ImageIO CoreMedia Foundation CoreGraphics MediaToolbox; 3721 }; 3722 3723 + kbfs = callPackage ../tools/security/keybase/kbfs.nix { }; 3724 3725 keybase-gui = callPackage ../tools/security/keybase/gui.nix { }; 3726