78ff18a538
svn path=/nixpkgs/trunk/; revision=30054
32 lines
799 B
Nix
32 lines
799 B
Nix
{ stdenv, fetchurl, unzip, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ec2-api-tools-1.4.4.2";
|
|
|
|
src = fetchurl {
|
|
url = http://s3.amazonaws.com/ec2-downloads/ec2-api-tools.zip;
|
|
sha256 = "03immxrrc7brbwm9nbp6dqw4bxpcb18l8rsj75nd6h2vanq2qlj4";
|
|
};
|
|
|
|
buildInputs = [ unzip makeWrapper ];
|
|
|
|
installPhase =
|
|
''
|
|
ensureDir $out
|
|
mv * $out
|
|
rm $out/bin/*.cmd # Windows stuff
|
|
|
|
for i in $out/bin/*; do
|
|
wrapProgram $i \
|
|
--set EC2_HOME $out \
|
|
--set JAVA_HOME ${jre}
|
|
done
|
|
''; # */
|
|
|
|
meta = {
|
|
homepage = http://developer.amazonwebservices.com/connect/entry.jspa?externalID=351;
|
|
description = "Command-line tools to create and manage Amazon EC2 virtual machines";
|
|
license = "unfree-redistributable";
|
|
};
|
|
}
|