ntp: don't install manpages, docs etc
This commit is contained in:
parent
65dfbad365
commit
ad3ef53171
1 changed files with 14 additions and 0 deletions
14
overlay.nix
14
overlay.nix
|
@ -26,6 +26,20 @@ extraPkgs // {
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
ntp = prev.ntp.overrideAttrs(o: {
|
||||||
|
outputs = [
|
||||||
|
"out"
|
||||||
|
"man"
|
||||||
|
"perllib"
|
||||||
|
"doc"
|
||||||
|
];
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $perllib
|
||||||
|
moveToOutput "share/ntp" $perllib
|
||||||
|
'';
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
strace = prev.strace.override { libunwind = null; };
|
strace = prev.strace.override { libunwind = null; };
|
||||||
|
|
||||||
kexec-tools-static = prev.kexec-tools.overrideAttrs(o: {
|
kexec-tools-static = prev.kexec-tools.overrideAttrs(o: {
|
||||||
|
|
Loading…
Reference in a new issue