2015-02-11 14:23:58 +01:00
|
|
|
{stdenv, fetchurl, autoconf, automake, pkgconfig, curl, openssl, libxml2, fuse}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-05-07 22:47:58 +02:00
|
|
|
name = "s3fs-fuse-1.78";
|
2015-02-11 14:23:58 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/s3fs-fuse/s3fs-fuse/archive/v1.78.tar.gz;
|
|
|
|
sha256 = "1xcp0bqa4a2ynjn5phb1pj70wm322czhqp4qcb27d5jd545b1h1n";
|
|
|
|
};
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
buildInputs = [ autoconf automake pkgconfig curl openssl libxml2 fuse ];
|
|
|
|
|
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;
|
2015-02-11 14:23:58 +01:00
|
|
|
};
|
|
|
|
}
|