mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
amazon ec2 ami tools
svn path=/nixpkgs/trunk/; revision=19396
This commit is contained in:
parent
6b4a920e51
commit
8c29f10134
32
pkgs/tools/virtualization/amazon-ec2-ami-tools/default.nix
Normal file
32
pkgs/tools/virtualization/amazon-ec2-ami-tools/default.nix
Normal 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";
|
||||
};
|
||||
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user