SoftMaker Office: Difference between revisions

imported>Yannickloth
m Yannickloth moved page SoftMakerOffice to SoftMaker Office: Title is not correct without space
imported>Yannickloth
fix hash/sha256 for 21.05
Line 27: Line 27:


=== 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 = {