2015-06-27 09:28:31 +01:00
|
|
|
{ fetchurl, stdenv, unzip }:
|
2008-07-29 15:26:03 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-02-23 09:54:35 +00:00
|
|
|
name = "crypto++-5.6.2";
|
2008-07-29 15:26:03 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-02-23 09:54:35 +00:00
|
|
|
url = "mirror://sourceforge/cryptopp/cryptopp562.zip";
|
|
|
|
sha256 = "0x1mqpz1v071cfrw4grbw7z734cxnpry1qh2b6rsmcx6nkyd5gsw";
|
2008-07-29 15:26:03 +01:00
|
|
|
};
|
|
|
|
|
2015-06-27 09:28:31 +01:00
|
|
|
patches = with stdenv;
|
|
|
|
lib.optional (system != "i686-cygwin") ./dll.patch
|
|
|
|
++ lib.optional isDarwin ./GNUmakefile.patch;
|
|
|
|
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
|
|
|
configurePhase = let
|
|
|
|
marchflags =
|
|
|
|
if stdenv.isi686 then "-march=i686" else
|
|
|
|
if stdenv.isx86_64 then "-march=nocona -mtune=generic" else
|
|
|
|
"";
|
|
|
|
in
|
|
|
|
''
|
|
|
|
sed -i GNUmakefile \
|
|
|
|
-e 's|-march=native|${marchflags} -fPIC|g' \
|
|
|
|
-e '/^CXXFLAGS =/s|-g ||'
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
|
|
buildFlags = "libcryptopp.so";
|
2009-08-11 00:50:07 +01:00
|
|
|
|
|
|
|
doCheck = true;
|
2012-02-07 09:18:04 +00:00
|
|
|
checkPhase = "LD_LIBRARY_PATH=`pwd` make test";
|
2008-07-29 15:26:03 +01:00
|
|
|
|
2015-06-27 09:28:31 +01:00
|
|
|
# prefer -fPIC and .so to .a; cryptotest.exe seems superfluous
|
|
|
|
postInstall = ''rm "$out"/lib/*.a -r "$out/bin" '';
|
|
|
|
|
2015-04-20 22:44:53 +01:00
|
|
|
meta = with stdenv.lib; {
|
2008-07-29 15:26:03 +01:00
|
|
|
description = "Crypto++, a free C++ class library of cryptographic schemes";
|
|
|
|
homepage = http://cryptopp.com/;
|
2015-04-20 22:44:53 +01:00
|
|
|
license = licenses.boost;
|
|
|
|
platforms = platforms.all;
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ ];
|
2008-07-29 15:26:03 +01:00
|
|
|
};
|
2009-08-11 00:50:07 +01:00
|
|
|
}
|
2015-06-27 09:28:31 +01:00
|
|
|
|