onlyoffice-bin: 6.2.0 -> 6.3.1

launchpad/nixpkgs/master
GTrunSec 3 years ago
parent 7032ab6d61
commit a8dc11b757
No known key found for this signature in database
GPG Key ID: 2368FAFA4ABDD2A0
  1. 13
      pkgs/applications/office/onlyoffice-bin/default.nix
  2. 5
      pkgs/applications/office/onlyoffice-bin/update.sh

@ -1,7 +1,7 @@
{ stdenv
, lib
, fetchurl
# Alphabetic ordering below
# Alphabetic ordering below
, alsa-lib
, at-spi2-atk
, atk
@ -59,7 +59,7 @@ let
let
version = "v20201206-cjk";
in
"https://github.com/googlefonts/noto-cjk/raw/${version}/NotoSansCJKsc-Regular.otf";
"https://github.com/googlefonts/noto-cjk/raw/${version}/NotoSansCJKsc-Regular.otf";
sha256 = "sha256-aJXSVNJ+p6wMAislXUn4JQilLhimNSedbc9nAuPVxo4=";
};
@ -70,13 +70,14 @@ let
pulseaudio
];
in stdenv.mkDerivation rec {
in
stdenv.mkDerivation rec {
pname = "onlyoffice-desktopeditors";
version = "6.2.0";
version = "6.3.1";
minor = null;
src = fetchurl {
url = "https://github.com/ONLYOFFICE/DesktopEditors/releases/download/v${version}/onlyoffice-desktopeditors_amd64.deb";
sha256 = "sha256-nKmWxaVVul/rGDIh3u9zCpKu7U0nmrntFFf96xQyzdg=";
sha256 = "sha256-WCjCljA7yB7Zm/I4rDZnfgaUQpDUKwbUvL7hkIG8cVM=";
};
nativeBuildInputs = [
@ -160,6 +161,8 @@ in stdenv.mkDerivation rec {
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${runtimeLibs}" )
'';
passthru.updateScript = ./update.sh;
meta = with lib; {
description = "Office suite that combines text, spreadsheet and presentation editors allowing to create, view and edit local documents";
homepage = "https://www.onlyoffice.com/";

@ -0,0 +1,5 @@
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl jq common-updater-scripts
version="$(curl -sL "https://api.github.com/repos/ONLYOFFICE/DesktopEditors/releases?per_page=1" | jq -r ".[0].tag_name" | sed 's/^v//')"
update-source-version onlyoffice-bin "$version"
Loading…
Cancel
Save