nixpkgs/pkgs/tools/filesystems/s3fs/default.nix

33 lines
836 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, curl, openssl, libxml2, fuse, osxfuse }:
2015-02-11 13:23:58 +00:00
2017-02-28 09:57:41 +00:00
stdenv.mkDerivation rec {
pname = "s3fs-fuse";
2020-08-14 01:53:35 +00:00
version = "1.87";
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}";
2020-08-14 01:53:35 +00:00
sha256 = "09ib3sh6vg3z7cpccj3ysgpdyf84a98lf6nz15a61r4l27h111f2";
2015-02-11 13:23:58 +00:00
};
2017-02-17 12:45:43 +00:00
2020-02-08 09:20:00 +00:00
buildInputs = [ curl openssl libxml2 ]
2021-01-15 09:19:50 +00:00
++ lib.optionals stdenv.isLinux [ fuse ]
++ lib.optionals stdenv.isDarwin [ osxfuse ];
2017-02-28 09:57:41 +00:00
nativeBuildInputs = [ autoreconfHook pkgconfig ];
configureFlags = [
"--with-openssl"
];
2015-08-19 21:18:24 +00:00
postInstall = ''
ln -s $out/bin/s3fs $out/bin/mount.s3fs
'';
meta = with lib; {
2015-02-11 13:23:58 +00:00
description = "Mount an S3 bucket as filesystem through FUSE";
license = licenses.gpl2;
2020-02-08 09:20:00 +00:00
platforms = platforms.linux ++ platforms.darwin;
2015-02-11 13:23:58 +00:00
};
}