forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
33 lines
850 B
Nix
33 lines
850 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, curl, openssl, libxml2, fuse, osxfuse }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "s3fs-fuse";
|
|
version = "1.87";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "s3fs-fuse";
|
|
repo = "s3fs-fuse";
|
|
rev = "v${version}";
|
|
sha256 = "09ib3sh6vg3z7cpccj3ysgpdyf84a98lf6nz15a61r4l27h111f2";
|
|
};
|
|
|
|
buildInputs = [ curl openssl libxml2 ]
|
|
++ stdenv.lib.optionals stdenv.isLinux [ fuse ]
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ osxfuse ];
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
configureFlags = [
|
|
"--with-openssl"
|
|
];
|
|
|
|
postInstall = ''
|
|
ln -s $out/bin/s3fs $out/bin/mount.s3fs
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Mount an S3 bucket as filesystem through FUSE";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|