summary refs log tree commit diff
path: root/pkgs/tools/filesystems/blobfuse
diff options
context:
space:
mode:
authorJean-Baptiste Giraudeau <jb@giraudeau.info>2018-04-28 00:58:40 +0200
committerJörg Thalheim <Mic92@users.noreply.github.com>2018-04-27 23:58:40 +0100
commit92808e667fd909ecd2a1502b20d9dd163986aec8 (patch)
tree5cbf4f333ee38791dae41f756a1a721f701355e1 /pkgs/tools/filesystems/blobfuse
parent00ddbc8196fd05439009eee256ac824a56e98a8c (diff)
downloadnixpkgs-92808e667fd909ecd2a1502b20d9dd163986aec8.tar
nixpkgs-92808e667fd909ecd2a1502b20d9dd163986aec8.tar.gz
nixpkgs-92808e667fd909ecd2a1502b20d9dd163986aec8.tar.bz2
nixpkgs-92808e667fd909ecd2a1502b20d9dd163986aec8.tar.lz
nixpkgs-92808e667fd909ecd2a1502b20d9dd163986aec8.tar.xz
nixpkgs-92808e667fd909ecd2a1502b20d9dd163986aec8.tar.zst
nixpkgs-92808e667fd909ecd2a1502b20d9dd163986aec8.zip
blobfuse: init at 1.0.1-RC-Preview (#39073)
Diffstat (limited to 'pkgs/tools/filesystems/blobfuse')
-rw-r--r--pkgs/tools/filesystems/blobfuse/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/blobfuse/default.nix b/pkgs/tools/filesystems/blobfuse/default.nix
new file mode 100644
index 00000000000..f847cde98a9
--- /dev/null
+++ b/pkgs/tools/filesystems/blobfuse/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, curl, gnutls, libgcrypt, libuuid, fuse }:
+
+stdenv.mkDerivation rec {
+  name = "blobfuse-${version}";
+  version = "1.0.1-RC-Preview";
+
+  src = fetchFromGitHub {
+    owner  = "Azure";
+    repo   = "azure-storage-fuse";
+    rev    = "v${version}";
+    sha256 = "143rxgfmprir4a7frrv8llkv61jxzq50w2v8wn32vx6gl6vci1zs";
+  };
+
+  buildInputs = [ curl gnutls libgcrypt libuuid fuse ];
+  nativeBuildInputs = [ cmake pkgconfig ];
+
+  meta = with stdenv.lib; {
+    description = "Mount an Azure Blob storage as filesystem through FUSE";
+    license = licenses.mit;
+    maintainers = with maintainers; [ jbgi ];
+    platforms = platforms.linux;
+  };
+}