1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, curl, openssl, libxml2, fuse }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-41IgUgpVZiIzi3N5kgX7PAhgnd+i/FH1o8t5y3Uw14g=";
14 buildInputs = [ curl openssl libxml2 fuse ];
15 nativeBuildInputs = [ autoreconfHook pkg-config ];
22 ln -s $out/bin/s3fs $out/bin/mount.s3fs
26 broken = stdenv.isDarwin;
27 description = "Mount an S3 bucket as filesystem through FUSE";
28 license = licenses.gpl2;
29 platforms = platforms.linux ++ platforms.darwin;