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

35 lines
913 B
Nix
Raw Normal View History

{ stdenv, fetchurl, unzip, makeWrapper, jre }:
2009-10-27 12:48:26 +00:00
2012-07-25 15:35:51 -04:00
stdenv.mkDerivation rec {
2015-09-24 10:36:32 +02:00
name = "ec2-api-tools-1.7.5.1";
2012-11-08 15:42:14 +01:00
2009-10-27 12:48:26 +00:00
src = fetchurl {
2013-06-25 14:05:48 +02:00
url = "http://tarballs.nixos.org/${name}.zip";
2015-09-24 10:36:32 +02:00
sha256 = "0figmvcm82ghmpz3018ihysz8zpxpysgbpdx7rmciq9y80qbw6l5";
2009-10-27 12:48:26 +00:00
};
buildInputs = [ unzip makeWrapper ];
installPhase =
''
2012-11-08 15:42:14 +01:00
d=$out/libexec/ec2-api-tools
mkdir -p $d
mv * $d
rm $d/bin/*.cmd # Windows stuff
2012-11-08 15:42:14 +01:00
for i in $d/bin/*; do
b=$(basename $i)
if [ $b = "ec2-cmd" ]; then continue; fi
makeWrapper $i $out/bin/$(basename $i) \
--set EC2_HOME $d \
--set JAVA_HOME ${jre}
done
''; # */
2012-11-08 15:42:14 +01:00
meta = {
homepage = http://developer.amazonwebservices.com/connect/entry.jspa?externalID=351;
description = "Command-line tools to create and manage Amazon EC2 virtual machines";
2014-11-06 00:44:33 +00:00
license = stdenv.lib.licenses.amazonsl;
};
2009-10-27 12:48:26 +00:00
}