summary refs log tree commit diff
path: root/pkgs/applications/office/softmaker/softmaker_office.nix
blob: e41e9fc8b29ec2d9200ca56cba7a34dc2ce5b2f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ callPackage, fetchurl, ... } @ args:

callPackage ./generic.nix (args // rec {
  pname = "softmaker-office";
  version = "1018";
  edition = "2021";
  suiteName = "SoftMaker Office";

  src = fetchurl {
    url = "https://www.softmaker.net/down/softmaker-office-${edition}-${version}-amd64.tgz";
    sha256 = "1g9mcn0z7s3xw7d5bcjxbnamh6knzndcysahydskfcds6czdxg0c";
  };

  archive = "office${edition}.tar.lzma";
})