mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
007f80c1d0
Should eval cleanly, as far as -A tarball tells me. Relevant: issue #2999, issue #739
30 lines
843 B
Nix
30 lines
843 B
Nix
{ 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 =
|
|
''
|
|
mkdir -p $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
|
|
|
|
mkdir -p $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 = stdenv.lib.licenses.free; # some custom as-is in file headers
|
|
};
|
|
}
|