2010-01-14 14:26:35 +00:00
|
|
|
{ stdenv, fetchurl, unzip, ruby, openssl, makeWrapper }:
|
2010-01-13 14:25:45 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "ec2-ami-tools";
|
2010-01-14 14:26:35 +00:00
|
|
|
|
2010-01-13 14:25:45 +00:00
|
|
|
buildInputs = [unzip makeWrapper];
|
2010-01-14 14:26:35 +00:00
|
|
|
|
2010-01-13 14:25:45 +00:00
|
|
|
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 \
|
2010-01-14 14:26:35 +00:00
|
|
|
--prefix PATH : ${ruby}/bin:${openssl}/bin
|
2010-01-13 14:25:45 +00:00
|
|
|
done
|
|
|
|
|
2010-01-14 14:26:35 +00:00
|
|
|
sed -i 's|/bin/bash|${stdenv.shell}|' $out/lib/ec2/platform/base/pipeline.rb
|
2010-01-13 14:25:45 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|