3
0
Fork 0
forked from mirrors/nixpkgs

pycryptopp: use the embedded crypto++ library when compiling this module

crypto++ has an impurity that leads to test suite failures in this
module, i.e. in sha256. When that impurity has been fixed, we should try
building on top of the the pristine crypto++ library again.

svn path=/nixpkgs/trunk/; revision=22760
This commit is contained in:
Peter Simons 2010-07-27 23:50:51 +00:00
parent 81a2c9d395
commit 84323ac979

View file

@ -516,9 +516,9 @@ rec {
};
# Use our own copy of Crypto++.
preConfigure = "export PYCRYPTOPP_DISABLE_EMBEDDED_CRYPTOPP=1";
# preConfigure = "export PYCRYPTOPP_DISABLE_EMBEDDED_CRYPTOPP=1";
buildInputs = [ setuptoolsDarcs darcsver pkgs.cryptopp ];
buildInputs = [ setuptoolsDarcs darcsver /* pkgs.cryptopp */ ];
meta = {
homepage = http://allmydata.org/trac/pycryptopp;