51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, fetchFromGitHub
|
||
|
, bzip2
|
||
|
, libdivsufsort
|
||
|
, jsoncpp
|
||
|
, openssl
|
||
|
, mpfr
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation (finalAttrs: {
|
||
|
pname = "sp800-90b-entropyassessment";
|
||
|
version = "1.1.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "usnistgov";
|
||
|
repo = "SP800-90B_EntropyAssessment";
|
||
|
rev = "v${finalAttrs.version}";
|
||
|
hash = "sha256-KZQ7kC0PbBkjLEQZIqYakQ91OvCxruhdfUwiRHtno3w=";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ bzip2 libdivsufsort jsoncpp openssl mpfr ];
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace Makefile \
|
||
|
--replace "-march=native" ""
|
||
|
'';
|
||
|
|
||
|
sourceRoot = "${finalAttrs.src.name}/cpp";
|
||
|
|
||
|
makeFlags = [
|
||
|
"CROSS_COMPILE=${stdenv.cc.targetPrefix}"
|
||
|
"ARCH=${stdenv.hostPlatform.linuxArch}"
|
||
|
];
|
||
|
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
mkdir -p $out/bin
|
||
|
cp ea_* $out/bin
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
homepage = "https://github.com/usnistgov/SP800-90B_EntropyAssessment";
|
||
|
description = "Implementation of min-entropy assessment methods included in Special Publication 800-90B";
|
||
|
platforms = lib.platforms.linux;
|
||
|
license = lib.licenses.nistSoftware;
|
||
|
maintainers = with lib.maintainers; [ orichter thillux ];
|
||
|
};
|
||
|
})
|