Skip to content

Commit

Permalink
blobfuse: init at 1.0.1-RC-Preview (NixOS#39073)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbgi authored and Synthetica9 committed May 3, 2018
1 parent 519cd76 commit 93c43b3
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1726,6 +1726,11 @@
github = "jbedo";
name = "Justin Bedő";
};
jbgi = {
email = "jb@giraudeau.info";
github = "jbgi";
name = "Jean-Baptiste Giraudeau";
};
jcumming = {
email = "jack@mudshark.org";
name = "Jack Cummings";
Expand Down
23 changes: 23 additions & 0 deletions pkgs/tools/filesystems/blobfuse/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -838,6 +838,8 @@ with pkgs;
boost = boost160;
};

blobfuse = callPackage ../tools/filesystems/blobfuse { };

blockdiag = pythonPackages.blockdiag;

blsd = callPackage ../tools/misc/blsd {
Expand Down

0 comments on commit 93c43b3

Please sign in to comment.