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

31 lines
722 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, autoreconfHook, pkg-config
2016-05-24 22:29:24 +02:00
, fuse, curl, expat }:
2017-02-02 04:30:01 +01:00
stdenv.mkDerivation rec {
pname = "s3backer";
2021-03-09 14:40:13 +01:00
version = "1.6.1";
2017-02-02 04:30:01 +01:00
2016-05-24 22:29:24 +02:00
src = fetchFromGitHub {
2021-03-09 14:40:13 +01:00
sha256 = "sha256-67sVT72i8tOMdGH/+Oh1N7Vh/2/qD56ImGWI+tprMOM=";
2016-05-24 22:29:24 +02:00
rev = version;
repo = "s3backer";
owner = "archiecobbs";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
2016-05-24 22:29:24 +02:00
buildInputs = [ fuse curl expat ];
2016-05-24 22:29:24 +02: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 22:29:24 +02:00
license = licenses.gpl2Plus;
platforms = with platforms; linux;
};
}