mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
* Added s3sync.
svn path=/nixpkgs/trunk/; revision=20496
This commit is contained in:
parent
570759c288
commit
c7b9e45e76
2 changed files with 33 additions and 0 deletions
29
pkgs/tools/networking/s3sync/default.nix
Normal file
29
pkgs/tools/networking/s3sync/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchurl, ruby, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "s3sync-1.2.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://s3.amazonaws.com/ServEdge_pub/s3sync/s3sync.tar.gz; # !!!
|
||||
sha256 = "19467mgym0da0hifhkcbivccdima7gkaw3k8q760ilfbwgwxcn7f";
|
||||
};
|
||||
|
||||
buildInputs = [ makeWrapper ];
|
||||
|
||||
installPhase =
|
||||
''
|
||||
ensureDir $out/libexec/s3sync
|
||||
cp *.rb $out/libexec/s3sync
|
||||
makeWrapper "${ruby}/bin/ruby $out/libexec/s3sync/s3cmd.rb" $out/bin/s3cmd
|
||||
makeWrapper "${ruby}/bin/ruby $out/libexec/s3sync/s3sync.rb" $out/bin/s3sync
|
||||
|
||||
ensureDir $out/share/doc/s3sync
|
||||
cp README* $out/share/doc/s3sync/
|
||||
''; # */
|
||||
|
||||
meta = {
|
||||
homepage = http://s3sync.net/;
|
||||
description = "Command-line tools to manipulate Amazon S3 buckets";
|
||||
license = "free-non-copyleft";
|
||||
};
|
||||
}
|
|
@ -1491,6 +1491,10 @@ let
|
|||
inherit fetchurl stdenv pkgconfig fuse curl expat;
|
||||
};
|
||||
|
||||
s3sync = import ../tools/networking/s3sync {
|
||||
inherit fetchurl stdenv ruby makeWrapper;
|
||||
};
|
||||
|
||||
sablotron = import ../tools/text/xml/sablotron {
|
||||
inherit fetchurl stdenv expat;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue