forked from mirrors/nixpkgs
* Added s3backer.
svn path=/nixpkgs/trunk/; revision=18811
This commit is contained in:
parent
20845cabfc
commit
589ba9982d
18
pkgs/tools/filesystems/s3backer/default.nix
Normal file
18
pkgs/tools/filesystems/s3backer/default.nix
Normal 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+";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue