mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-10 14:14:20 +00:00
91b3db1309
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
51 lines
1.1 KiB
Nix
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 ];
|
|
};
|
|
}
|