mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
accc62a98c
Changes: - Adds support for saving documents to the DOC, XLS, and PPT formats. - TextMaker adds support for saving to the OpenDocument format. - Adds a dark mode.
16 lines
401 B
Nix
16 lines
401 B
Nix
{ callPackage, fetchurl, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
pname = "freeoffice";
|
|
version = "970";
|
|
edition = "2018";
|
|
suiteName = "FreeOffice";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.softmaker.net/down/softmaker-freeoffice-${version}-amd64.tgz";
|
|
sha256 = "1maibr4x8mksb32ixvyy2rjn4x9f51191p5fcdj5qwz32pf8h2dr";
|
|
};
|
|
|
|
archive = "freeoffice${edition}.tar.lzma";
|
|
})
|