systemd: add withDocumentation flag

This commit is contained in:
Florian Klink
2020-10-28 23:24:18 +01:00
parent f142493a6a
commit e77326208e
2 changed files with 5 additions and 1 deletions
+4 -1
View File
@@ -59,6 +59,7 @@
, withCoredump ? true
, withCompression ? true # adds bzip2, lz4 and xz
, withCryptsetup ? true
, withDocumentation ? true
, withEfi ? stdenv.hostPlatform.isEfi
, withHostnamed ? true
, withHwdb ? true
@@ -390,7 +391,9 @@ stdenv.mkDerivation {
# "kernel-install" shouldn't be used on NixOS.
find $out -name "*kernel-install*" -exec rm {} \;
''; # */
'' + lib.optionalString (!withDocumentation) ''
rm -rf $out/share/doc
'';
enableParallelBuilding = true;
+1
View File
@@ -18666,6 +18666,7 @@ in
withCompression = false;
withCoredump = false;
withCryptsetup = false;
withDocumentation = false;
withEfi = false;
withHostnamed = false;
withHwdb = false;