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

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

39 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, autoreconfHook, pkg-config
2016-05-24 20:29:24 +00:00
, fuse, curl, expat }:
2017-02-02 03:30:01 +00:00
stdenv.mkDerivation rec {
pname = "s3backer";
2023-02-12 06:30:31 +00:00
version = "2.0.2";
2017-02-02 03:30:01 +00:00
2016-05-24 20:29:24 +00:00
src = fetchFromGitHub {
2023-02-12 06:30:31 +00:00
sha256 = "sha256-xmOtL4v3UxdjrL09sSfXyF5FoMrNerSqG9nvEuwMvNM=";
2016-05-24 20:29:24 +00:00
rev = version;
repo = "s3backer";
owner = "archiecobbs";
};
2023-02-12 06:30:31 +00:00
patches = [
# from upstream, after latest release
# https://github.com/archiecobbs/s3backer/commit/303a669356fa7cd6bc95ac7076ce51b1cab3970a
./fix-darwin-builds.patch
];
nativeBuildInputs = [ autoreconfHook pkg-config ];
2016-05-24 20:29:24 +00:00
buildInputs = [ fuse curl expat ];
2021-03-25 16:39:37 +00:00
# AC_CHECK_DECLS doesn't work with clang
postPatch = lib.optionalString stdenv.cc.isClang ''
substituteInPlace configure.ac --replace \
'AC_CHECK_DECLS(fdatasync)' ""
'';
meta = with lib; {
homepage = "https://github.com/archiecobbs/s3backer";
description = "FUSE-based single file backing store via Amazon S3";
2016-05-24 20:29:24 +00:00
license = licenses.gpl2Plus;
2021-03-25 16:39:37 +00:00
platforms = platforms.unix;
2023-11-23 21:09:35 +00:00
mainProgram = "s3backer";
};
}