blob: d1aaf2dbd1d1f6b6f94b7fa78ebef97a70598d45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
{
lib,
stdenv,
fetchFromGitHub,
enableStatic ? stdenv.hostPlatform.isStatic,
enableShared ? !enableStatic,
# Multi-threading with OpenMP is disabled by default
# more info on https://www.cryptopp.com/wiki/OpenMP
withOpenMP ? false,
llvmPackages,
}:
stdenv.mkDerivation rec {
pname = "crypto++";
version = "8.9.0";
underscoredVersion = lib.strings.replaceStrings [ "." ] [ "_" ] version;
src = fetchFromGitHub {
owner = "weidai11";
repo = "cryptopp";
rev = "CRYPTOPP_${underscoredVersion}";
hash = "sha256-HV+afSFkiXdy840JbHBTR8lLL0GMwsN3QdwaoQmicpQ=";
};
outputs = [
"out"
"dev"
];
postPatch = ''
substituteInPlace GNUmakefile \
--replace "AR = /usr/bin/libtool" "AR = ar" \
--replace "ARFLAGS = -static -o" "ARFLAGS = -cru"
'';
buildInputs = lib.optionals (stdenv.cc.isClang && withOpenMP) [ llvmPackages.openmp ];
makeFlags = [ "PREFIX=${placeholder "out"}" ];
buildFlags =
lib.optional enableStatic "static" ++ lib.optional enableShared "shared" ++ [ "libcryptopp.pc" ];
enableParallelBuilding = true;
hardeningDisable = [ "fortify" ];
env = lib.optionalAttrs withOpenMP {
CXXFLAGS = "-fopenmp";
};
doCheck = true;
# always built for checks but install static lib only when necessary
preInstall = lib.optionalString (!enableStatic) "rm -f libcryptopp.a";
installTargets = [ "install-lib" ];
installFlags = [ "LDCONF=true" ];
meta = {
description = "Free C++ class library of cryptographic schemes";
homepage = "https://cryptopp.com/";
changelog = [
"https://raw.githubusercontent.com/weidai11/cryptopp/CRYPTOPP_${underscoredVersion}/History.txt"
"https://github.com/weidai11/cryptopp/releases/tag/CRYPTOPP_${underscoredVersion}"
];
license = with lib.licenses; [
boost
publicDomain
];
platforms = lib.platforms.all;
maintainers = [ ];
};
}
|