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