about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/s3backer/default.nix
blob: 3951a8d8bb79d7235af8122d228870cec19a52ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, pkgconfig, fuse, curl, expat }:
  
stdenv.mkDerivation rec {
  name = "s3backer-1.3.1";
  
  src = fetchurl {
    url = "http://s3backer.googlecode.com/files/${name}.tar.gz";
    sha256 = "1dmdvhb7mcn0fdcljpdyvfynhqrsnrg50dgl1706i8f1831lgk1r";
  };

  buildInputs = [ pkgconfig fuse curl expat ];

  meta = {
    homepage = http://code.google.com/p/s3backer/;
    description = "FUSE-based single file backing store via Amazon S3";
    license = "GPLv2+";
  };
}