biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / office / softmaker / freeoffice.nix
blob4e731de72d18aae42bfd5e3449452ee78b39a2ce
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 = "1054";
9   edition = "2021";
10   hash = "sha256-dqmJUm0Qi1/GzGrI4OCHo1LwQ5KxMwZZw5EsYTMF6XU=";
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-${edition}-${version}-amd64.tgz";
24   };
26   archive = "freeoffice${edition}.tar.lzma";