mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
31 lines
720 B
Nix
31 lines
720 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, curl, openssl, libxml2, fuse }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "s3fs-fuse";
|
|
version = "1.85";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "s3fs-fuse";
|
|
repo = "s3fs-fuse";
|
|
rev = "v${version}";
|
|
sha256 = "0sk2b7bxb2wzni1f39l4976dy47s7hqv62l7x7fwcjp62y22nw7m";
|
|
};
|
|
|
|
buildInputs = [ curl openssl libxml2 fuse ];
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
configureFlags = [
|
|
"--with-openssl"
|
|
];
|
|
|
|
postInstall = ''
|
|
ln -s $out/bin/s3fs $out/bin/mount.s3fs
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Mount an S3 bucket as filesystem through FUSE";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|