mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
s3fs: Add package
This commit is contained in:
parent
f7b26bf98f
commit
4c7adddcb7
16
pkgs/tools/filesystems/s3fs/default.nix
Normal file
16
pkgs/tools/filesystems/s3fs/default.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{stdenv, fetchurl, autoconf, automake, pkgconfig, curl, openssl, libxml2, fuse}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "sshfs-fuse-1.78";
|
||||
src = fetchurl {
|
||||
url = https://github.com/s3fs-fuse/s3fs-fuse/archive/v1.78.tar.gz;
|
||||
sha256 = "1xcp0bqa4a2ynjn5phb1pj70wm322czhqp4qcb27d5jd545b1h1n";
|
||||
};
|
||||
preConfigure = "./autogen.sh";
|
||||
buildInputs = [ autoconf automake pkgconfig curl openssl libxml2 fuse ];
|
||||
|
||||
meta = {
|
||||
description = "Mount an S3 bucket as filesystem through FUSE";
|
||||
license = "GPLv2";
|
||||
};
|
||||
}
|
@ -2466,6 +2466,8 @@ let
|
||||
rzip = callPackage ../tools/compression/rzip { };
|
||||
|
||||
s3backer = callPackage ../tools/filesystems/s3backer { };
|
||||
|
||||
s3fs = callPackage ../tools/filesystems/s3fs { };
|
||||
|
||||
s3cmd = callPackage ../tools/networking/s3cmd { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user