SoftMaker Office: Difference between revisions

imported>Yannickloth
m Yannickloth moved page SoftMakerOffice to SoftMaker Office: Title is not correct without space
DoggoBit (talk | contribs)
No edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{unfree}}
{{tip/unfree}}
 
SoftMaker Office is a proprietary office suite from SoftMaker (https://www.softmaker.com/en).
 
It consists of programs for word processing (TextMaker); creating and editing spreadsheets (PlanMaker), slideshows (Presentations), and programming with BASIC (BasicMaker)


SoftMaker Office is a proprietary office suite from SoftMaker (https://www.softmaker.com/en).


Users buy a license for a given edition (let's say "2018") and can the install all versions of this edition (usually, each edition has multiple versions). This edition is eventually replaced by a newer one, for which a new license is needed. Users remain able to install older editions for which they acquired a license, but can't use newer editions with their old license.
Users buy a license for a given edition (let's say "2018") and can the install all versions of this edition (usually, each edition has multiple versions). This edition is eventually replaced by a newer one, for which a new license is needed. Users remain able to install older editions for which they acquired a license, but can't use newer editions with their old license.
Line 11: Line 14:
== 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: 1030
=== 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 23:
     systemPackages = with pkgs; [
     systemPackages = with pkgs; [
         softmaker-office
         softmaker-office
    ];
};
</syntaxhighlight>
=== SoftMaker Office 2021; version: 1064 ===
<syntaxhighlight lang="nix">
environment = {
    systemPackages = with pkgs; [
        (softmaker-office.override {
            officeVersion = {
                edition = "2021";
                version = "1064";
                hash = "sha256-UyA/Bl4K9lsvZsDsPPiy31unBnxOG8PVFH/qisQ85NM=";
            };
        })
    ];
};
</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=";
            };
        })
     ];
     ];
};
};
Line 27: Line 63:


=== Install SoftMaker Office 2018 ===
=== Install SoftMaker Office 2018 ===
==== On NixOS 21.05 ====
<syntaxhighlight lang="nix">
environment = {
    systemPackages = with pkgs; [
        (softmaker-office.override {
            officeVersion = {
                edition = "2018";
                version = "982";
                hash = "sha256-A45q/irWxKTLszyd7Rv56WeqkwHtWg4zY9YVxqA/KmQ=";
            };
        })
    ];
};
</syntaxhighlight>
==== On NixOS 20.09 ====
{{Note|The only difference is the sha256/hash attribute.}}
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
environment = {
environment = {
Line 50: Line 106:


[[Category:Guide]]
[[Category:Guide]]
[[Category:Applications]]