summary refs log tree commit diff
path: root/pkgs/tools/filesystems/s3fs/default.nix
blob: 4c509444b74ca62676b17297b18f1a7bbbd9be71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, fetchurl, autoconf, automake, pkgconfig, curl, openssl, libxml2, fuse}:

stdenv.mkDerivation {
  name = "sshfs-fuse-1.78";
  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 ];
  
  meta = {
    description = "Mount an S3 bucket as filesystem through FUSE";
    license = "GPLv2";
  };
}