nixpkgs/pkgs/tools/virtualization/ec2-api-tools/default.nix

32 lines
786 B
Nix
Raw Normal View History

{ stdenv, fetchurl, unzip, makeWrapper, jre }:
2012-07-25 19:35:51 +00:00
stdenv.mkDerivation rec {
name = "ec2-api-tools-1.6.0.0";
src = fetchurl {
2012-07-25 19:35:51 +00:00
url = "http://nixos.org/tarballs/${name}.zip";
sha256 = "1j9isvi6g68zhk7zxs29yad2d0rpnbqx8fz25yn5paqx9c8pzqcl";
};
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";
};
}