nixpkgs/pkgs/applications/office/softmaker/softmaker_office.nix
Daniël de Kok 87e8f73633 softmaker-office: 976 -> 1014
The edition also changed from 2018 to 2021, since this is a major new
release. Changes:

https://www.softmaker.com/en/softmaker-office-whatsnew
2020-06-03 14:54:01 +02:00

16 lines
417 B
Nix

{ callPackage, fetchurl, ... } @ args:
callPackage ./generic.nix (args // rec {
pname = "softmaker-office";
version = "1014";
edition = "2021";
suiteName = "SoftMaker Office";
src = fetchurl {
url = "https://www.softmaker.net/down/softmaker-office-${edition}-${version}-amd64.tgz";
sha256 = "0wqaxng6s7lxwz6v2j6y1m5h4g4v63m0lscj7l2fpx5ksjlamp55";
};
archive = "office${edition}.tar.lzma";
})