summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniël de Kok <me@danieldk.eu>2021-02-19 17:55:37 +0100
committerDaniël de Kok <me@danieldk.eu>2021-02-19 17:58:47 +0100
commit392ec121d480dee4226efb33573b9c87b6fe07a6 (patch)
treedf74c1dc8382c0821e9588d8a4e0aa08c5f04664
parent6fd81681d058d09e2296c36e94cfe6f108fa52ed (diff)
downloadnixpkgs-392ec121d480dee4226efb33573b9c87b6fe07a6.tar
nixpkgs-392ec121d480dee4226efb33573b9c87b6fe07a6.tar.gz
nixpkgs-392ec121d480dee4226efb33573b9c87b6fe07a6.tar.bz2
nixpkgs-392ec121d480dee4226efb33573b9c87b6fe07a6.tar.lz
nixpkgs-392ec121d480dee4226efb33573b9c87b6fe07a6.tar.xz
nixpkgs-392ec121d480dee4226efb33573b9c87b6fe07a6.tar.zst
nixpkgs-392ec121d480dee4226efb33573b9c87b6fe07a6.zip
freeoffice: 980 -> 982
-rw-r--r--pkgs/applications/office/softmaker/freeoffice.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/office/softmaker/freeoffice.nix b/pkgs/applications/office/softmaker/freeoffice.nix
index bdd90fecb8e..b1b24c3e6cb 100644
--- a/pkgs/applications/office/softmaker/freeoffice.nix
+++ b/pkgs/applications/office/softmaker/freeoffice.nix
@@ -5,9 +5,9 @@
   # overridable. This is useful when the upstream archive was replaced
   # and nixpkgs is not in sync yet.
 , officeVersion ? {
-  version = "980";
+  version = "982";
   edition = "2018";
-  sha256 = "19pgil86aagiz6z4kx22gd4cxbbmrx42ix42arkfb6p6hav1plby";
+  hash = "sha256-euoZfAaDDTXzoaNLc/YdTngreTiYOBi7sGU161GP83w=";
 }
 
 , ... } @ args:
@@ -19,7 +19,7 @@ callPackage ./generic.nix (args // rec {
   suiteName = "FreeOffice";
 
   src = fetchurl {
-    inherit (officeVersion) sha256;
+    inherit (officeVersion) hash;
     url = "https://www.softmaker.net/down/softmaker-freeoffice-${version}-amd64.tgz";
   };