djent: init at 1.0

Add djent as a package. djent is a reimplementation of ent, which is a tool for entropy estimation.

Signed-off-by: Oliver Richter <richter-oliver@gmx.net>
This commit is contained in:
Oliver Richter 2023-07-27 12:21:24 +02:00
parent ef4efd8aff
commit f83348c6ea

View file

@ -0,0 +1,47 @@
{ lib
, stdenv
, fetchFromGitHub
, mpfr
}:
stdenv.mkDerivation rec {
pname = "djent";
version = "1.0";
src = fetchFromGitHub {
owner = "dj-on-github";
repo = "djent";
rev = "${version}";
hash = "sha256-inMh7l/6LlrVnIin+L+fj+4Lchk0Xvt09ngVrCuvphE=";
};
buildInputs = [ mpfr ];
preBuild = ''
sed -i s/gcc/${stdenv.cc.targetPrefix}gcc/g Makefile
''
+ lib.optionalString (!stdenv.hostPlatform.isx86_64) ''
sed -i s/-m64//g Makefile
'';
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
installPhase = ''
runHook preInstall
install -D djent $out/bin/djent
runHook postInstall
'';
enableParallelBuilding = true;
meta = {
homepage = "http://www.deadhat.com/";
description = ''
A reimplementation of the Fourmilab/John Walker random number test program
ent with several improvements
'';
license = lib.licenses.gpl2Only;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ orichter thillux ];
};
}