summary refs log tree commit diff
path: root/pkgs/tools/security/kbfs
diff options
context:
space:
mode:
authorBenno Fünfstück <benno.fuenfstueck@gmail.com>2016-08-02 20:55:22 +0200
committerBenno Fünfstück <benno.fuenfstueck@gmail.com>2016-08-06 17:20:23 +0200
commit51aee897403134981a5878aec2c4c7e0bcbd02bc (patch)
treeab6a36e38e16e2d54a91365bdc509061bfdda377 /pkgs/tools/security/kbfs
parentadeab67bd80c7dc2d94152f3231c5940ae10a337 (diff)
downloadnixpkgs-51aee897403134981a5878aec2c4c7e0bcbd02bc.tar
nixpkgs-51aee897403134981a5878aec2c4c7e0bcbd02bc.tar.gz
nixpkgs-51aee897403134981a5878aec2c4c7e0bcbd02bc.tar.bz2
nixpkgs-51aee897403134981a5878aec2c4c7e0bcbd02bc.tar.lz
nixpkgs-51aee897403134981a5878aec2c4c7e0bcbd02bc.tar.xz
nixpkgs-51aee897403134981a5878aec2c4c7e0bcbd02bc.tar.zst
nixpkgs-51aee897403134981a5878aec2c4c7e0bcbd02bc.zip
kbfs: init
Diffstat (limited to 'pkgs/tools/security/kbfs')
-rw-r--r--pkgs/tools/security/kbfs/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/tools/security/kbfs/default.nix b/pkgs/tools/security/kbfs/default.nix
new file mode 100644
index 00000000000..fb7b8cc9fe7
--- /dev/null
+++ b/pkgs/tools/security/kbfs/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+  name = "kbfs-2016-08-02-git";
+  version = "1.0.16";
+
+  goPackagePath = "github.com/keybase/kbfs";
+  subPackages = [ "kbfsfuse" ];
+
+  dontRenameImports = true;
+
+  src = fetchFromGitHub {
+    owner = "keybase";
+    repo = "kbfs";
+    rev = "a8f0714536d15668e0f561ec4d3324762c8cf030";
+    sha256 = "0m4k55akd8cv5k8mfpm3rb3fz13z31l49pml7mgviv0hi3mnisqd";
+  };
+
+  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 ];
+  };
+}