Merge pull request #113705 from danieldk/softmaker-office-2030

softmaker-office: 1020 -> 1030

authored by danieldk.tngl.sh and committed by

GitHub 45206c76 9ab61d97

+7 -7
+3 -3
pkgs/applications/office/softmaker/freeoffice.nix
··· 5 5 # overridable. This is useful when the upstream archive was replaced 6 6 # and nixpkgs is not in sync yet. 7 7 , officeVersion ? { 8 - version = "980"; 8 + version = "982"; 9 9 edition = "2018"; 10 - sha256 = "19pgil86aagiz6z4kx22gd4cxbbmrx42ix42arkfb6p6hav1plby"; 10 + hash = "sha256-euoZfAaDDTXzoaNLc/YdTngreTiYOBi7sGU161GP83w="; 11 11 } 12 12 13 13 , ... } @ args: ··· 19 19 suiteName = "FreeOffice"; 20 20 21 21 src = fetchurl { 22 - inherit (officeVersion) sha256; 22 + inherit (officeVersion) hash; 23 23 url = "https://www.softmaker.net/down/softmaker-freeoffice-${version}-amd64.tgz"; 24 24 }; 25 25
+1 -1
pkgs/applications/office/softmaker/generic.nix
··· 1 - { lib, stdenv, fetchurl, autoPatchelfHook, makeDesktopItem, makeWrapper, copyDesktopItems 1 + { lib, stdenv, autoPatchelfHook, makeDesktopItem, makeWrapper, copyDesktopItems 2 2 3 3 # Dynamic Libraries 4 4 , curl, libGL, libX11, libXext, libXmu, libXrandr, libXrender
+3 -3
pkgs/applications/office/softmaker/softmaker_office.nix
··· 6 6 # Softmaker Office or when the upstream archive was replaced and 7 7 # nixpkgs is not in sync yet. 8 8 , officeVersion ? { 9 - version = "1020"; 9 + version = "1030"; 10 10 edition = "2021"; 11 - sha256 = "1v227pih1p33x7axsw7wz8pz5walpbqnk0iqng711ixk883nqxn5"; 11 + hash = "sha256-bpnyPyZnJc9RFVrFM2o3M7Gc4PSKFGpaM1Yo8ZKGHrE="; 12 12 } 13 13 14 14 , ... } @ args: ··· 20 20 suiteName = "SoftMaker Office"; 21 21 22 22 src = fetchurl { 23 - inherit (officeVersion) sha256; 23 + inherit (officeVersion) hash; 24 24 url = "https://www.softmaker.net/down/softmaker-office-${edition}-${version}-amd64.tgz"; 25 25 }; 26 26