* BitTorrent 5.0.3.

* wxPython 2.6.3.

svn path=/nixpkgs/trunk/; revision=7341
This commit is contained in:
Eelco Dolstra
2006-12-13 20:30:09 +00:00
parent 0a91ca3091
commit 9ea7038c51
8 changed files with 51 additions and 17 deletions

View File

@@ -0,0 +1,12 @@
{stdenv, fetchurl, python}:
stdenv.mkDerivation {
name = "pycrypto-2.0.1";
src = fetchurl {
url = http://www.amk.ca/files/python/crypto/pycrypto-2.0.1.tar.gz;
md5 = "4d5674f3898a573691ffb335e8d749cd";
};
buildInputs = [python];
buildPhase = "true";
installPhase = "python ./setup.py install --prefix=$out";
}