fuji/home_packages: add --nologo to libreoffice bins
This commit is contained in:
@@ -106,7 +106,6 @@ in
|
|||||||
libinput
|
libinput
|
||||||
libjxl
|
libjxl
|
||||||
libnotify
|
libnotify
|
||||||
libreoffice-qt6-fresh
|
|
||||||
libva-utils
|
libva-utils
|
||||||
lsix
|
lsix
|
||||||
lsix
|
lsix
|
||||||
@@ -191,5 +190,17 @@ in
|
|||||||
++ [
|
++ [
|
||||||
inputs.swaysw.packages.${system}.swaysw
|
inputs.swaysw.packages.${system}.swaysw
|
||||||
(pkgs.callPackage ../../packages/bubblewrap/default.nix { })
|
(pkgs.callPackage ../../packages/bubblewrap/default.nix { })
|
||||||
|
]
|
||||||
|
++ [
|
||||||
|
(pkgs.symlinkJoin {
|
||||||
|
name = "libreoffice-nologo";
|
||||||
|
paths = [ pkgs.libreoffice ];
|
||||||
|
buildInputs = [ pkgs.makeWrapper ];
|
||||||
|
postBuild = ''
|
||||||
|
for f in libreoffice sbase scalc sdraw simpress smath soffice swriter; do
|
||||||
|
wrapProgram "$out/bin/$f" --add-flags "--nologo"
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user