python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / office / softmaker / freeoffice.nix
blobb1b24c3e6cb56a58a5ab2b360590bf9b6c05710d
1 { callPackage
2 , fetchurl
4   # This is a bit unusual, but makes version and hash easily
5   # overridable. This is useful when the upstream archive was replaced
6   # and nixpkgs is not in sync yet.
7 , officeVersion ? {
8   version = "982";
9   edition = "2018";
10   hash = "sha256-euoZfAaDDTXzoaNLc/YdTngreTiYOBi7sGU161GP83w=";
13 , ... } @ args:
15 callPackage ./generic.nix (args // rec {
16   inherit (officeVersion) version edition;
18   pname = "freeoffice";
19   suiteName = "FreeOffice";
21   src = fetchurl {
22     inherit (officeVersion) hash;
23     url = "https://www.softmaker.net/down/softmaker-freeoffice-${version}-amd64.tgz";
24   };
26   archive = "freeoffice${edition}.tar.lzma";