2017-02-28 09:57:41 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, 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 13:41:18 +01:00
|
|
|
pname = "s3fs-fuse";
|
2019-03-23 23:56:43 +00:00
|
|
|
version = "1.85";
|
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}";
|
2019-03-23 23:56:43 +00:00
|
|
|
sha256 = "0sk2b7bxb2wzni1f39l4976dy47s7hqv62l7x7fwcjp62y22nw7m";
|
2015-02-11 13:23:58 +00:00
|
|
|
};
|
2017-02-17 12:45:43 +00:00
|
|
|
|
2017-02-28 09:57:41 +00:00
|
|
|
buildInputs = [ curl openssl libxml2 fuse ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-openssl"
|
|
|
|
];
|
2015-08-19 22:18:24 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
ln -s $out/bin/s3fs $out/bin/mount.s3fs
|
|
|
|
'';
|
|
|
|
|
2015-05-27 20:56:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-02-11 13:23:58 +00:00
|
|
|
description = "Mount an S3 bucket as filesystem through FUSE";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = platforms.linux;
|
2015-02-11 13:23:58 +00:00
|
|
|
};
|
|
|
|
}
|