3df8e6662a
wrappers that set EC2_HOME and JAVA_HOME. svn path=/nixpkgs/trunk/; revision=19390
32 lines
801 B
Nix
32 lines
801 B
Nix
{ stdenv, fetchurl, unzip, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ec2-api-tools-1.3-46266";
|
|
|
|
src = fetchurl {
|
|
url = http://s3.amazonaws.com/ec2-downloads/ec2-api-tools.zip;
|
|
sha256 = "06d5hpzc18bj30hjc477xx62hsspgfkn3fdccrg1avadgwsykgq6";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|