appflowy: browser login redirect (#376016)
[NixPkgs.git] / pkgs / applications / office / softmaker / softmaker-office-nx.nix
blobf6b152df6883f391535e5d404f390e9708e7842b
2   callPackage,
3   fetchurl,
5   # This is a bit unusual, but makes version and hash easily
6   # overridable. This is useful when the upstream archive was replaced
7   # and nixpkgs is not in sync yet.
8   officeVersion ? {
9     version = "1222";
10     edition = "";
11     hash = "sha256-8ya9RYpd9G5SITYOpvhxjQE8ieV8TuAApkjNwCf9nHs=";
12   },
14   ...
15 }@args:
17 callPackage ./generic.nix (
18   args
19   // rec {
20     inherit (officeVersion) version edition;
22     pname = "softmaker-office-nx";
23     suiteName = "SoftMaker Office NX";
25     src = fetchurl {
26       inherit (officeVersion) hash;
27       url = "https://www.softmaker.net/down/softmaker-office-nx-${version}-amd64.tgz";
28     };
30     archive = "officenx.tar.lzma";
31   }