mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
87e8f73633
The edition also changed from 2018 to 2021, since this is a major new release. Changes: https://www.softmaker.com/en/softmaker-office-whatsnew
16 lines
417 B
Nix
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";
|
|
})
|