nixpkgs/pkgs/tools/misc/SP800-90B_EntropyAssessment/default.nix
Yueh-Shun Li 91b3db1309 treewide: fix sourceRoot for fetchgit-based src
According to Nixpkgs manual[1] and NixOS 23.11 Release Note[2], the
`sourceRoot` attribute passed to `stdenv.mkDerivation` should be
specified as `"${src.name}"` or `"${src.name}/subdir"` when `src` is
produced using `fetchgit`-based fetchers.

`sourceRoot = "source"` or `sourceRoot = "source/subdir"` is based on
the assumption that the `name` attribute of these pre-unpacked fetchers
are always `"source"`, which is not the case. Expecting constant `name`
also makes the source FODs prone to irrelevent hashes during version
bumps.

[1]: https://nixos.org/manual/nixpkgs/unstable/#var-stdenv-sourceRoot
[2]: https://nixos.org/manual/nixos/stable/release-notes#sec-release-23.11
2024-03-09 07:53:25 +08:00

51 lines
1.1 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, bzip2
, libdivsufsort
, jsoncpp
, openssl
, mpfr
}:
stdenv.mkDerivation rec {
pname = "SP800-90B_EntropyAssessment";
version = "1.1.6";
src = fetchFromGitHub {
owner = "usnistgov";
repo = "SP800-90B_EntropyAssessment";
rev = "v${version}";
hash = "sha256-KZQ7kC0PbBkjLEQZIqYakQ91OvCxruhdfUwiRHtno3w=";
};
buildInputs = [ bzip2 libdivsufsort jsoncpp openssl mpfr ];
postPatch = ''
substituteInPlace Makefile \
--replace "-march=native" ""
'';
sourceRoot = "${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.free; #this software uses the NIST software license
maintainers = with lib.maintainers; [ orichter thillux ];
};
}