Files
nixpkgs/pkgs/development/libraries/crypto++/default.nix
T

55 lines
1.4 KiB
Nix
Raw Normal View History

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