SoftMaker Office: Difference between revisions
imported>Yannickloth fix hash/sha256 for 21.05 |
imported>Yannickloth m Add instructions to install SoftMaker Office 2021 version 1060 |
||
| Line 11: | Line 11: | ||
== Installing the latest version (of the latest edition) of SoftMaker Office == | == Installing the latest version (of the latest edition) of SoftMaker Office == | ||
'''As of 2021-05-28:''' edition: SoftMaker Office 2021; version: | === SoftMaker Office 2021; version: 1032 === | ||
'''As of 2021-05-28:''' edition: SoftMaker Office 2021; version: 1032 | |||
Simply add softmaker-office to your system packages: | Simply add softmaker-office to your system packages: | ||
| Line 19: | Line 20: | ||
systemPackages = with pkgs; [ | systemPackages = with pkgs; [ | ||
softmaker-office | softmaker-office | ||
]; | |||
}; | |||
</syntaxhighlight> | |||
=== SoftMaker Office 2021; version: 1060 === | |||
<syntaxhighlight lang="nix"> | |||
environment = { | |||
systemPackages = with pkgs; [ | |||
(softmaker-office.override { | |||
officeVersion = { | |||
edition = "2021"; | |||
version = "1060"; | |||
hash = "sha256-cS+sDwN2EALxhbm83iTdu9iQe4VEe/4fo6rGH1Z54P0="; | |||
}; | |||
}) | |||
]; | ]; | ||
}; | }; | ||