2009-09-16 14:35:38 +00:00
|
|
|
{ fetchurl, stdenv, unzip, libtool }:
|
2008-07-29 14:26:03 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-02-23 09:54:35 +00:00
|
|
|
name = "crypto++-5.6.2";
|
2008-07-29 14:26:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-02-23 09:54:35 +00:00
|
|
|
url = "mirror://sourceforge/cryptopp/cryptopp562.zip";
|
|
|
|
sha256 = "0x1mqpz1v071cfrw4grbw7z734cxnpry1qh2b6rsmcx6nkyd5gsw";
|
2008-07-29 14:26:03 +00:00
|
|
|
};
|
|
|
|
|
2013-02-23 09:54:35 +00:00
|
|
|
patches = stdenv.lib.optional (stdenv.system != "i686-cygwin") ./dll.patch;
|
2009-08-10 23:50:07 +00:00
|
|
|
|
2013-02-23 09:54:35 +00:00
|
|
|
buildInputs = [ unzip libtool ];
|
2008-07-29 14:26:03 +00:00
|
|
|
|
|
|
|
# Unpack the thing in a subdirectory.
|
|
|
|
unpackPhase = ''
|
|
|
|
echo "unpacking Crypto++ to \`${name}' from \`$PWD'..."
|
|
|
|
mkdir "${name}" && (cd "${name}" && unzip "$src")
|
|
|
|
sourceRoot="$PWD/${name}"
|
|
|
|
'';
|
|
|
|
|
2010-07-28 13:03:11 +00:00
|
|
|
cxxflags = if stdenv.isi686 then "-march=i686" else
|
2012-02-07 09:18:04 +00:00
|
|
|
if stdenv.isx86_64 then "-march=nocona -fPIC" else
|
2010-07-28 13:03:11 +00:00
|
|
|
"";
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
sed -i GNUmakefile \
|
|
|
|
-e 's|-march=native|${cxxflags}|g' \
|
|
|
|
-e 's|-mtune=native||g' \
|
|
|
|
-e '/^CXXFLAGS =/s|-g -O2|-O3|'
|
|
|
|
'';
|
|
|
|
|
2012-02-07 09:18:04 +00:00
|
|
|
# I add what 'enableParallelBuilding' would add to the make call,
|
|
|
|
# if we were using the generic build phase.
|
2009-08-10 23:50:07 +00:00
|
|
|
buildPhase = ''
|
2013-06-03 12:53:27 +00:00
|
|
|
make PREFIX="$out" all libcryptopp.so -j$NIX_BUILD_CORES -l$NIX_BUILD_CORES
|
2009-08-10 23:50:07 +00:00
|
|
|
'';
|
|
|
|
|
2010-07-28 13:08:49 +00:00
|
|
|
# TODO: Installing cryptotest.exe doesn't seem to be necessary. We run
|
|
|
|
# that binary during this build anyway to verify everything works.
|
2009-08-10 23:50:07 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir "$out"
|
|
|
|
make install PREFIX="$out"
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = true;
|
2012-02-07 09:18:04 +00:00
|
|
|
checkPhase = "LD_LIBRARY_PATH=`pwd` make test";
|
2008-07-29 14:26:03 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Crypto++, a free C++ class library of cryptographic schemes";
|
|
|
|
homepage = http://cryptopp.com/;
|
2013-02-23 09:54:35 +00:00
|
|
|
license = "Boost 1.0";
|
2013-08-16 21:44:33 +00:00
|
|
|
maintainers = [ ];
|
2008-07-29 14:26:03 +00:00
|
|
|
};
|
2009-08-10 23:50:07 +00:00
|
|
|
}
|