amazon ec2 api tools

svn path=/nixpkgs/trunk/; revision=17974
This commit is contained in:
Rob Vermaas 2009-10-27 12:48:26 +00:00
parent b91ebb6f40
commit 93ab1e0724
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,7 @@
source $stdenv/setup
ensureDir $out
unzip $src
mv ec2-api-tools-*/* $out
fixupPhase

View file

@ -0,0 +1,12 @@
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "ec2-api-tools";
buildInputs = [unzip];
src = fetchurl {
url = http://s3.amazonaws.com/ec2-downloads/ec2-api-tools.zip;
sha256 = "1d5j3hsa9vswrhan5yf2v6sq3plpfl4lgdvk3wlaw14rdv50cdiv";
};
builder = ./builder.sh ;
}