nixpkgs/pkgs/development/libraries/crypto++/default.nix
Lluís Batlle i Rossell a21457ffa8 Updating crypto++ to 5.6.1
svn path=/nixpkgs/trunk/; revision=32098
2012-02-07 09:18:04 +00:00

61 lines
1.7 KiB
Nix

{ fetchurl, stdenv, unzip, libtool }:
stdenv.mkDerivation rec {
name = "crypto++-5.6.1";
src = fetchurl {
url = "mirror://sourceforge/cryptopp/cryptopp561.zip";
sha256 = "0s7jhvnfihikqp1iwpdz03fad62xkjxci6jiahrh6f3sn664vrwq";
};
patches = [ ./pic.patch ]
++ stdenv.lib.optional (stdenv.system != "i686-cygwin") ./dll.patch;
buildInputs = [ unzip ]
# For some reason the makefile sets "AR = libtool" on Darwin.
++ stdenv.lib.optional (stdenv.system == "i686-darwin") libtool;
# Unpack the thing in a subdirectory.
unpackPhase = ''
echo "unpacking Crypto++ to \`${name}' from \`$PWD'..."
mkdir "${name}" && (cd "${name}" && unzip "$src")
sourceRoot="$PWD/${name}"
'';
cxxflags = if stdenv.isi686 then "-march=i686" else
if stdenv.isx86_64 then "-march=nocona -fPIC" else
"";
configurePhase = ''
sed -i GNUmakefile \
-e 's|-march=native|${cxxflags}|g' \
-e 's|-mtune=native||g' \
-e '/^CXXFLAGS =/s|-g -O2|-O3|'
'';
# I add what 'enableParallelBuilding' would add to the make call,
# if we were using the generic build phase.
buildPhase = ''
make PREFIX="$out" all libcryptopp.so -j$NIX_BUILD_CORES -l$NIX_BUILD_CORES
'';
# TODO: Installing cryptotest.exe doesn't seem to be necessary. We run
# that binary during this build anyway to verify everything works.
installPhase = ''
mkdir "$out"
make install PREFIX="$out"
'';
doCheck = true;
checkPhase = "LD_LIBRARY_PATH=`pwd` make test";
meta = {
description = "Crypto++, a free C++ class library of cryptographic schemes";
homepage = http://cryptopp.com/;
license = "Public Domain";
maintainers = [ stdenv.lib.maintainers.ludo ];
};
}