* Added s3backer.

svn path=/nixpkgs/trunk/; revision=18811
This commit is contained in:
Eelco Dolstra 2009-12-04 15:51:02 +00:00
parent 20845cabfc
commit 589ba9982d
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,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+";
};
}

View file

@ -1358,6 +1358,10 @@ let
inherit fetchurl stdenv bzip2;
};
s3backer = import ../tools/filesystems/s3backer {
inherit fetchurl stdenv pkgconfig fuse curl expat;
};
sablotron = import ../tools/text/xml/sablotron {
inherit fetchurl stdenv expat;
};