about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/s3backer/default.nix
blob: f3f8877db2c9f6dfaec77799fd50a5bdb5780423 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchFromGitHub
, autoreconfHook, pkgconfig
, fuse, curl, expat }:
  
stdenv.mkDerivation rec {
  name = "s3backer-${version}";
  version = "1.4.2";
  
  src = fetchFromGitHub {
    sha256 = "0b9vmykrfpzs9is31pqb8xvgjraghnax1ph2jkbib1ya0vhxm8dj";
    rev = version;
    repo = "s3backer";
    owner = "archiecobbs";
  };

  nativeBuildInputs = [ autoreconfHook pkgconfig ];
  buildInputs = [ fuse curl expat ];

  autoreconfPhase = ''
    patchShebangs ./autogen.sh
    ./autogen.sh
  '';

  meta = with stdenv.lib; {
    homepage = http://code.google.com/p/s3backer/;
    description = "FUSE-based single file backing store via Amazon S3";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ nckx ];
  };
}