nixpkgs/pkgs/applications/office/libreoffice/wrapper.nix
Samuel Dionne-Riel 4a58f744f1 libreoffice-*: inherits meta.
This ensures the package listing shows the expected informations.
2018-11-09 13:52:26 -05:00

20 lines
489 B
Nix

{ libreoffice, runCommand, dbus, bash }:
let
jdk = libreoffice.jdk;
in
(runCommand "${libreoffice.name}" {
inherit dbus libreoffice jdk bash;
} ''
mkdir -p "$out/bin"
ln -s "${libreoffice}/share" "$out/share"
substituteAll "${./wrapper.sh}" "$out/bin/soffice"
chmod a+x "$out/bin/soffice"
for i in $(ls "${libreoffice}/bin/"); do
test "$i" = "soffice" || ln -s soffice "$out/bin/$(basename "$i")"
done
'') // {
inherit libreoffice dbus;
meta = libreoffice.meta;
}