2010-01-14 14:26:35 +00:00
|
|
|
{ stdenv, fetchurl, unzip, ruby, openssl, makeWrapper }:
|
2010-01-13 14:25:45 +00:00
|
|
|
|
2012-07-25 20:35:51 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-08-04 21:05:54 +01:00
|
|
|
name = "ec2-ami-tools-${version}";
|
|
|
|
|
2015-09-23 19:08:04 +01:00
|
|
|
version = "1.5.7";
|
2013-01-24 17:23:04 +00:00
|
|
|
|
2010-07-13 21:58:58 +01:00
|
|
|
buildInputs = [ unzip makeWrapper ];
|
2013-01-24 17:23:04 +00:00
|
|
|
|
2010-01-13 14:25:45 +00:00
|
|
|
src = fetchurl {
|
2014-08-04 21:05:54 +01:00
|
|
|
url = "http://s3.amazonaws.com/ec2-downloads/${name}.zip";
|
2015-09-23 19:08:04 +01:00
|
|
|
sha256 = "17xj7xmdbcwdbzalhfs6yyiwa64978mk3li39l949qfjjgrxjias";
|
2010-01-13 14:25:45 +00:00
|
|
|
};
|
|
|
|
|
2010-01-22 16:42:54 +00:00
|
|
|
# Amazon EC2 requires that disk images are writable. If they're
|
|
|
|
# not, the VM immediately terminates with a mysterious
|
|
|
|
# "Server.InternalError" message. Since disk images generated in
|
|
|
|
# the Nix store are read-only, they must be made writable in the
|
|
|
|
# tarball uploaded to Amazon S3. So add a `--mode=0755' flag to the
|
|
|
|
# tar invocation.
|
|
|
|
patches = [ ./writable.patch ];
|
|
|
|
|
2010-01-13 14:25:45 +00:00
|
|
|
installPhase =
|
|
|
|
''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out
|
2010-01-13 14:25:45 +00:00
|
|
|
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
|
2013-01-24 17:23:04 +00:00
|
|
|
|
2010-01-14 14:26:35 +00:00
|
|
|
sed -i 's|/bin/bash|${stdenv.shell}|' $out/lib/ec2/platform/base/pipeline.rb
|
2011-10-21 17:25:27 +01:00
|
|
|
''; # */
|
2010-01-13 14:25:45 +00:00
|
|
|
|
|
|
|
meta = {
|
2014-11-05 13:28:52 +00:00
|
|
|
homepage = https://aws.amazon.com/developertools/Amazon-EC2/368;
|
2010-01-13 14:25:45 +00:00
|
|
|
description = "Command-line tools to create and manage Amazon EC2 virtual machine images";
|
2014-11-05 13:28:52 +00:00
|
|
|
license = stdenv.lib.licenses.amazonsl;
|
2010-01-13 14:25:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|