nixpkgs/pkgs/applications/office/softmaker/freeoffice.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
680 B
Nix
Raw Normal View History

{ callPackage
, fetchurl
2019-08-30 16:41:27 +01:00
# This is a bit unusual, but makes version and hash easily
# overridable. This is useful when the upstream archive was replaced
# and nixpkgs is not in sync yet.
, officeVersion ? {
2022-10-21 20:21:02 +01:00
version = "1054";
edition = "2021";
hash = "sha256-dqmJUm0Qi1/GzGrI4OCHo1LwQ5KxMwZZw5EsYTMF6XU=";
}
, ... } @ args:
callPackage ./generic.nix (args // rec {
inherit (officeVersion) version edition;
pname = "freeoffice";
2019-08-30 16:41:27 +01:00
suiteName = "FreeOffice";
src = fetchurl {
2021-02-19 16:55:37 +00:00
inherit (officeVersion) hash;
2022-10-21 20:21:02 +01:00
url = "https://www.softmaker.net/down/softmaker-freeoffice-${edition}-${version}-amd64.tgz";
2019-08-30 16:41:27 +01:00
};
archive = "freeoffice${edition}.tar.lzma";
})