mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
29 lines
698 B
Nix
29 lines
698 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "kbfs-${version}";
|
|
version = "2.10.1";
|
|
|
|
goPackagePath = "github.com/keybase/kbfs";
|
|
subPackages = [ "kbfsfuse" "kbfsgit/git-remote-keybase" ];
|
|
|
|
dontRenameImports = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "keybase";
|
|
repo = "kbfs";
|
|
rev = "v${version}";
|
|
sha256 = "0c03jm4pxqh4cfg1d7c833hdl8l57f1sbfqxwdq16y5s2cac1yss";
|
|
};
|
|
|
|
buildFlags = [ "-tags production" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.keybase.io;
|
|
description = "The Keybase FS FUSE driver";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ bennofs np ];
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|