nixpkgs/pkgs/tools/filesystems/s3backer/default.nix
R. RyanTM c7012c70a0 s3backer: 1.5.0 -> 1.5.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/s3backer/versions
2019-06-18 00:01:33 -07:00

31 lines
731 B
Nix

{ stdenv, fetchFromGitHub
, autoreconfHook, pkgconfig
, fuse, curl, expat }:
stdenv.mkDerivation rec {
name = "s3backer-${version}";
version = "1.5.1";
src = fetchFromGitHub {
sha256 = "0rfbylahnhv8sy9a8zkkfpyavf07dq3sdq060wrxnxbpad6qf91q";
rev = version;
repo = "s3backer";
owner = "archiecobbs";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ fuse curl expat ];
autoreconfPhase = ''
patchShebangs ./autogen.sh
./autogen.sh
'';
meta = with stdenv.lib; {
homepage = https://github.com/archiecobbs/s3backer;
description = "FUSE-based single file backing store via Amazon S3";
license = licenses.gpl2Plus;
platforms = with platforms; linux;
};
}