blobfuse: init at 1.0.1-RC-Preview (#39073)

This commit is contained in:
Jean-Baptiste Giraudeau
2018-04-27 23:58:40 +01:00
committed by Jörg Thalheim
parent 00ddbc8196
commit 92808e667f
3 changed files with 30 additions and 0 deletions
@@ -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;
};
}