fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jitterentropy";
|
|
version = "3.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "smuellerDD";
|
|
repo = "jitterentropy-library";
|
|
rev = "v${version}";
|
|
hash = "sha256-USc9e/GyajJe58/Z201AO3Y+t3IPOOdJAaifEwvgm2Q=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
enableParallelBuilding = true;
|
|
hardeningDisable = [ "fortify" ]; # avoid warnings
|
|
|
|
# prevent jitterentropy from builtin strip to allow controlling this from the derivation's
|
|
# settings. Also fixes a strange issue, where this strip may fail when cross-compiling.
|
|
installFlags = [
|
|
"INSTALL_STRIP=install"
|
|
"PREFIX=${placeholder "out"}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Provides a noise source using the CPU execution timing jitter";
|
|
homepage = "https://github.com/smuellerDD/jitterentropy-library";
|
|
changelog = "https://github.com/smuellerDD/jitterentropy-library/raw/v${version}/CHANGES.md";
|
|
license = with licenses; [ bsd3 /* OR */ gpl2Only ];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ johnazoidberg c0bw3b ];
|
|
};
|
|
}
|