ks: add completions for bash and zsh (#364049)
[NixPkgs.git] / pkgs / applications / office / softmaker / softmaker_office.nix
blob68f92c74a87cb8a9e412368e651a1eb828770e93
1 { callPackage
2 , fetchurl
4   # This is a bit unusual, but makes version and hash easily
5   # overridable. This is useful when people have an older version of
6   # Softmaker Office or when the upstream archive was replaced and
7   # nixpkgs is not in sync yet.
8 , officeVersion ? {
9   version = "1032";
10   edition = "2021";
11   hash = "sha256-LchSqLVBdkmWJQ8hCEvtwRPgIUSDE0URKPzCkEexGbc=";
14 , ... } @ args:
16 callPackage ./generic.nix (args // rec {
17   inherit (officeVersion) version edition;
19   pname = "softmaker-office";
20   suiteName = "SoftMaker Office";
22   src = fetchurl {
23     inherit (officeVersion) hash;
24     url = "https://www.softmaker.net/down/softmaker-office-${edition}-${version}-amd64.tgz";
25   };
27   archive = "office${edition}.tar.lzma";