libgcrypt: Disable jitter entropy RNG
This commit is contained in:
parent
40846590df
commit
2d73fc1292
1 changed files with 5 additions and 0 deletions
|
@ -23,6 +23,11 @@ let
|
||||||
in {
|
in {
|
||||||
inherit idiosyn;
|
inherit idiosyn;
|
||||||
|
|
||||||
|
libgcrypt = prev.libgcrypt.overrideAttrs (base: {
|
||||||
|
configureFlags = base.configureFlags or [ ]
|
||||||
|
++ [ "--disable-jent-support" ];
|
||||||
|
});
|
||||||
|
|
||||||
time = prev.time.overrideAttrs (base: {
|
time = prev.time.overrideAttrs (base: {
|
||||||
patches = base.patches or [ ]
|
patches = base.patches or [ ]
|
||||||
++ lib.optional final.time.stdenv.cc.isClang
|
++ lib.optional final.time.stdenv.cc.isClang
|
||||||
|
|
Loading…
Reference in a new issue