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