chronyd: disable editline
it drags in ncurses, which is Too Much
This commit is contained in:
parent
a7e7146887
commit
ce207e4763
1 changed files with 15 additions and 5 deletions
12
overlay.nix
12
overlay.nix
|
@ -55,10 +55,20 @@ extraPkgs // {
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
chrony = prev.chrony.override {
|
chrony =
|
||||||
|
let chrony' = prev.chrony.overrideAttrs(o: {
|
||||||
|
configureFlags = [
|
||||||
|
"--chronyvardir=$(out)/var/lib/chrony"
|
||||||
|
"--disable-readline"
|
||||||
|
"--disable-editline"
|
||||||
|
];
|
||||||
|
});
|
||||||
|
in chrony'.override {
|
||||||
gnutls = null;
|
gnutls = null;
|
||||||
nss = null;
|
nss = null;
|
||||||
nspr = null;
|
nspr = null;
|
||||||
|
readline = null;
|
||||||
|
libseccomp = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
ntp =
|
ntp =
|
||||||
|
|
Loading…
Reference in a new issue