b222e1b61f
svn path=/nixpkgs/trunk/; revision=33916
32 lines
798 B
Nix
32 lines
798 B
Nix
{ stdenv, fetchurl, unzip, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ec2-api-tools-1.5.3.0";
|
|
|
|
src = fetchurl {
|
|
url = http://s3.amazonaws.com/ec2-downloads/ec2-api-tools.zip;
|
|
sha256 = "0p0rk3bhk35b3dxdy8wjnbbj5zh1va63yfvdk5jxnzdzplds8v65";
|
|
};
|
|
|
|
buildInputs = [ unzip makeWrapper ];
|
|
|
|
installPhase =
|
|
''
|
|
mkdir -p $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";
|
|
};
|
|
}
|