2017-02-28 10:57:41 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, curl, openssl, libxml2, fuse }:
|
2015-02-11 14:23:58 +01:00
|
|
|
|
2017-02-28 10:57:41 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "s3fs-fuse-${version}";
|
2018-07-11 14:09:38 +02:00
|
|
|
version = "1.84";
|
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}";
|
2018-07-11 14:09:38 +02:00
|
|
|
sha256 = "1iafzlrqrjyphd1p74q5xzhgacc4gzijq8f6mdkvikbdsibch871";
|
2015-02-11 14:23:58 +01:00
|
|
|
};
|
2017-02-17 13:45:43 +01:00
|
|
|
|
2017-02-28 10:57:41 +01:00
|
|
|
buildInputs = [ curl openssl libxml2 fuse ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-openssl"
|
|
|
|
];
|
2015-08-19 23:18:24 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
ln -s $out/bin/s3fs $out/bin/mount.s3fs
|
|
|
|
'';
|
|
|
|
|
2015-05-27 21:56:04 +02:00
|
|
|
meta = with stdenv.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;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = platforms.linux;
|
2015-02-11 14:23:58 +01:00
|
|
|
};
|
|
|
|
}
|