2021-03-23 14:15:56 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, curl, openssl, libxml2, fuse }:
|
2015-02-11 13:23:58 +00:00
|
|
|
|
2017-02-28 09:57:41 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "s3fs-fuse";
|
2023-05-26 15:16:03 +00:00
|
|
|
version = "1.92";
|
2017-02-17 12:45:43 +00:00
|
|
|
|
2017-02-28 09:57:41 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "s3fs-fuse";
|
|
|
|
repo = "s3fs-fuse";
|
|
|
|
rev = "v${version}";
|
2023-05-26 15:16:03 +00:00
|
|
|
sha256 = "sha256-CS6lxDIBwhcnEG6XehbyAI4vb72PmwQ7p+gC1bbJEzM=";
|
2015-02-11 13:23:58 +00:00
|
|
|
};
|
2017-02-17 12:45:43 +00:00
|
|
|
|
2021-03-23 14:15:56 +00:00
|
|
|
buildInputs = [ curl openssl libxml2 fuse ];
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2017-02-28 09:57:41 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-openssl"
|
|
|
|
];
|
2015-08-19 21:18:24 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
ln -s $out/bin/s3fs $out/bin/mount.s3fs
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-02-11 13:23:58 +00:00
|
|
|
description = "Mount an S3 bucket as filesystem through FUSE";
|
2015-05-28 17:20:29 +00:00
|
|
|
license = licenses.gpl2;
|
2020-02-08 09:20:00 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2015-02-11 13:23:58 +00:00
|
|
|
};
|
|
|
|
}
|