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

37 lines
903 B
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";
2021-03-09 13:40:13 +00:00
version = "1.6.1";
2017-02-02 03:30:01 +00:00
2016-05-24 20:29:24 +00:00
src = fetchFromGitHub {
2021-03-09 13:40:13 +00:00
sha256 = "sha256-67sVT72i8tOMdGH/+Oh1N7Vh/2/qD56ImGWI+tprMOM=";
2016-05-24 20:29:24 +00:00
rev = version;
repo = "s3backer";
owner = "archiecobbs";
};
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)' ""
'';
2016-05-24 20:29:24 +00:00
autoreconfPhase = ''
patchShebangs ./autogen.sh
./autogen.sh
'';
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;
};
}