about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorDaniël de Kok <me@danieldk.eu>2019-08-30 17:41:27 +0200
committerDaniël de Kok <me@danieldk.eu>2019-09-06 07:44:07 +0200
commit11184dee46a4dfe99aeff8015f24b1ba571bd471 (patch)
tree7efa119dc78fafb2ba8c098317db4e9d9fd9137e /pkgs/applications/office
parent97390d648dbfedb28269e6db1255a2b03ad19440 (diff)
freeoffice: init at 966
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/softmaker/freeoffice.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/applications/office/softmaker/freeoffice.nix b/pkgs/applications/office/softmaker/freeoffice.nix
new file mode 100644
index 0000000000000..d0e6c73e3531c
--- /dev/null
+++ b/pkgs/applications/office/softmaker/freeoffice.nix
@@ -0,0 +1,15 @@
+{ callPackage, fetchurl, ... } @ args:
+
+callPackage ./generic.nix (args // rec {
+  pname = "freeoffice";
+  version = "966";
+  edition = "2018";
+  suiteName = "FreeOffice";
+
+  src = fetchurl {
+    url = "https://www.softmaker.net/down/softmaker-freeoffice-${version}-amd64.tgz";
+    sha256 = "18s92d2pmhmd56sb9c1zirwxzfgpqd8wh11bl0zi6g6skn68zhx4";
+  };
+
+  archive = "freeoffice${edition}.tar.lzma";
+})