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

24 lines
640 B
Nix
Raw Normal View History

2015-02-11 13:23:58 +00:00
{stdenv, fetchurl, autoconf, automake, pkgconfig, curl, openssl, libxml2, fuse}:
stdenv.mkDerivation {
2017-02-17 12:45:43 +00:00
name = "s3fs-fuse-1.80";
2015-02-11 13:23:58 +00:00
src = fetchurl {
2017-02-17 12:45:43 +00:00
url = https://github.com/s3fs-fuse/s3fs-fuse/archive/v1.80.tar.gz;
sha256 = "0ddx5khlyyrxm4s8is4gqbczmrcivj11hmkk9s893r3kpp4q30yy";
2015-02-11 13:23:58 +00:00
};
2017-02-17 12:45:43 +00:00
2015-02-11 13:23:58 +00:00
preConfigure = "./autogen.sh";
buildInputs = [ autoconf automake pkgconfig curl openssl libxml2 fuse ];
2015-08-19 21:18:24 +00:00
postInstall = ''
ln -s $out/bin/s3fs $out/bin/mount.s3fs
'';
meta = with stdenv.lib; {
2015-02-11 13:23:58 +00:00
description = "Mount an S3 bucket as filesystem through FUSE";
license = licenses.gpl2;
platforms = platforms.linux;
2015-02-11 13:23:58 +00:00
};
}