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

28 lines
673 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 ? {
2020-03-27 13:37:04 +00:00
version = "976";
2019-08-30 16:41:27 +01:00
edition = "2018";
sha256 = "13yh4lyqakbdqf4r8vw8imy5gwpfva697iqfd85qmp3wimqvzskl";
}
, ... } @ args:
callPackage ./generic.nix (args // rec {
inherit (officeVersion) version edition;
pname = "freeoffice";
2019-08-30 16:41:27 +01:00
suiteName = "FreeOffice";
src = fetchurl {
inherit (officeVersion) sha256;
2019-08-30 16:41:27 +01:00
url = "https://www.softmaker.net/down/softmaker-freeoffice-${version}-amd64.tgz";
};
archive = "freeoffice${edition}.tar.lzma";
})