8 stdenv.mkDerivation rec {
9 pname = "jitterentropy";
12 src = fetchFromGitHub {
14 repo = "jitterentropy-library";
16 hash = "sha256-CPvgc/W5Z2OfbP9Lp2tQevUQZr+xlh6q5r5Fp2WUHhg=";
19 nativeBuildInputs = [ cmake ];
26 hardeningDisable = [ "fortify" ]; # avoid warnings
29 description = "Provides a noise source using the CPU execution timing jitter";
30 homepage = "https://github.com/smuellerDD/jitterentropy-library";
31 changelog = "https://github.com/smuellerDD/jitterentropy-library/raw/v${version}/CHANGES.md";
32 license = with lib.licenses; [
36 platforms = lib.platforms.linux ++ lib.platforms.darwin;
37 maintainers = with lib.maintainers; [