nixpkgs/pkgs/development/libraries/crypto++/default.nix
Ludovic Courtès bdc8e21d9e Crypto++: Fix on Darwin.
svn path=/nixpkgs/trunk/; revision=17196
2009-09-16 14:35:38 +00:00

51 lines
1.3 KiB
Nix

{ fetchurl, stdenv, unzip, libtool }:
stdenv.mkDerivation rec {
name = "crypto++-5.6.0";
src = fetchurl {
url = "mirror://sourceforge/cryptopp/cryptopp560.zip";
sha256 = "1icbk50mr1sqycqbxbqg703m8aamz23ajgl22ychxdahz2sz08mm";
};
patches = [ ./pic.patch ]
++ stdenv.lib.optional (builtins.currentSystem != "i686-cygwin") ./dll.patch;
buildInputs = [ unzip ]
# For some reason the makefile sets "AR = libtool" on Darwin.
++ stdenv.lib.optional (builtins.currentSystem == "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}"
'';
# 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 ];
};
}