2016-12-29 01:56:47 +00:00
|
|
|
{ fetchurl, fetchFromGitHub, stdenv }:
|
2008-07-29 14:26:03 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-09-29 21:07:56 +00:00
|
|
|
name = "crypto++-${version}";
|
|
|
|
majorVersion = "5.6";
|
2016-12-29 01:56:47 +00:00
|
|
|
version = "${majorVersion}.5";
|
2008-07-29 14:26:03 +00:00
|
|
|
|
2016-12-29 01:56:47 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "weidai11";
|
|
|
|
repo = "cryptopp";
|
|
|
|
rev = "CRYPTOPP_5_6_5";
|
|
|
|
sha256 = "1yk7jyf4va9425cg05llskpls2jm7n3jwy2hj5jm74zkr4mwpvl7";
|
2008-07-29 14:26:03 +00:00
|
|
|
};
|
|
|
|
|
2015-06-27 08:28:31 +00:00
|
|
|
patches = with stdenv;
|
|
|
|
lib.optional (system != "i686-cygwin") ./dll.patch
|
2016-09-29 21:07:56 +00:00
|
|
|
++ lib.optional isDarwin ./GNUmakefile-darwin.patch;
|
2015-06-27 08:28:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2016-09-29 21:07:56 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
buildFlags = [ "libcryptopp.so" ];
|
|
|
|
installFlags = [ "LDCONF=true" ];
|
2009-08-10 23:50:07 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2015-06-27 08:28:31 +00:00
|
|
|
# prefer -fPIC and .so to .a; cryptotest.exe seems superfluous
|
2016-09-29 21:07:56 +00:00
|
|
|
postInstall = ''
|
|
|
|
rm "$out"/lib/*.a -r "$out/bin"
|
|
|
|
ln -sf "$out"/lib/libcryptopp.so.${version} "$out"/lib/libcryptopp.so.${majorVersion}
|
|
|
|
'';
|
2015-06-27 08:28:31 +00:00
|
|
|
|
2015-04-20 21:44:53 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-07-29 14:26:03 +00:00
|
|
|
description = "Crypto++, a free C++ class library of cryptographic schemes";
|
|
|
|
homepage = http://cryptopp.com/;
|
2015-04-20 21:44:53 +00:00
|
|
|
license = licenses.boost;
|
|
|
|
platforms = platforms.all;
|
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
|
|
|
}
|