amazon ec2 ami tools

svn path=/nixpkgs/trunk/; revision=19396
This commit is contained in:
Rob Vermaas 2010-01-13 14:25:45 +00:00
parent 6b4a920e51
commit 8c29f10134
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{stdenv, fetchurl, unzip, ruby, makeWrapper}:
stdenv.mkDerivation {
name = "ec2-ami-tools";
buildInputs = [unzip makeWrapper];
src = fetchurl {
url = http://s3.amazonaws.com/ec2-downloads/ec2-ami-tools.zip;
sha256 = "2a7c848abea286234adcbb08938cfad50b844ecdfc7770e781289d9d396a1972";
};
installPhase =
''
ensureDir $out
mv * $out
rm $out/*.txt
for i in $out/bin/*; do
wrapProgram $i \
--set EC2_HOME $out \
--set PATH '$PATH:${ruby}/bin'
done
sed -i 's|/bin/bash|${stdenv.shell}/bin/bash|' $out/lib/ec2/platform/base/pipeline.rb
'';
meta = {
homepage = http://developer.amazonwebservices.com/connect/entry.jspa?externalID=368&categoryID=88;
description = "Command-line tools to create and manage Amazon EC2 virtual machine images";
license = "unfree-redistributable";
};
}

View File

@ -333,6 +333,10 @@ let
inherit stdenv fetchurl unzip makeWrapper jre;
};
ec2amitools = import ../tools/virtualization/amazon-ec2-ami-tools {
inherit stdenv fetchurl unzip makeWrapper ruby;
};
amule = import ../tools/networking/p2p/amule {
inherit fetchurl stdenv zlib perl cryptopp gettext libupnp makeWrapper;
inherit wxGTK;