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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
886 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, curl, openssl, libxml2, fuse }:
2015-02-11 13:23:58 +00:00
2017-02-28 09:57:41 +00:00
stdenv.mkDerivation rec {
pname = "s3fs-fuse";
2023-07-23 11:09:34 +00:00
version = "1.93";
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}";
2023-07-23 11:09:34 +00:00
sha256 = "sha256-7rLHnQlyJDOn/RikOrrEAQ7O+4T+26vNGiTkOgNH75Q=";
2015-02-11 13:23:58 +00:00
};
2017-02-17 12:45:43 +00:00
buildInputs = [ curl openssl libxml2 fuse ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
2017-02-28 09:57:41 +00:00
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";
2023-07-23 11:10:00 +00:00
homepage = "https://github.com/s3fs-fuse/s3fs-fuse";
changelog = "https://github.com/s3fs-fuse/s3fs-fuse/raw/v${version}/ChangeLog";
maintainers = [ ];
license = licenses.gpl2Only;
platforms = platforms.unix;
2015-02-11 13:23:58 +00:00
};
}