Crypto++ 5.6.0, with shared library and test suite.

svn path=/nixpkgs/trunk/; revision=16661
This commit is contained in:
Ludovic Courtès
2009-08-10 23:50:07 +00:00
parent f8b01c81dc
commit 5a75fd2147
3 changed files with 62 additions and 6 deletions
@@ -1,13 +1,17 @@
{ fetchurl, stdenv, unzip }:
stdenv.mkDerivation rec {
name = "crypto++-5.5.2";
name = "crypto++-5.6.0";
src = fetchurl {
url = "mirror://sourceforge/cryptopp/cryptopp552.zip";
sha256 = "0nd783wk3gl36nfa9zmwxw6pn4n5p8mld7jf5dc1j9iy0gmqv3q7";
url = "mirror://sourceforge/cryptopp/cryptopp560.zip";
sha256 = "1icbk50mr1sqycqbxbqg703m8aamz23ajgl22ychxdahz2sz08mm";
};
patches = [ ./pic.patch ]
++ stdenv.lib.optional (builtins.currentSystem != "i686-cygwin") ./dll.patch;
buildInputs = [ unzip ];
# Unpack the thing in a subdirectory.
@@ -17,12 +21,27 @@ stdenv.mkDerivation rec {
sourceRoot="$PWD/${name}"
'';
buildPhase = ''make PREFIX="$out"'';
installPhase = ''mkdir "$out" && make install PREFIX="$out"'';
# Deal with one of the crappiest build system around there.
buildPhase = ''
# These guys forgot a file or something.
: > modexppc.cpp
make PREFIX="$out" all cryptopp.dll
'';
installPhase = ''
mkdir "$out"
make install PREFIX="$out"
cp -v cryptopp.dll "$out/lib/libcryptopp.so"
'';
doCheck = true;
checkPhase = "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 ];
};
}
}