about summary refs log tree commit diff
path: root/pkgs/applications/networking/pcloud
diff options
context:
space:
mode:
authorR-VdP <141248+R-VdP@users.noreply.github.com>2022-12-26 17:59:25 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2022-12-26 20:54:27 +0100
commit02276588573fc05e084f8a60219f2a94ddb2192d (patch)
tree0472e59b09756a26070edef02468f330586ebbe3 /pkgs/applications/networking/pcloud
parent28e6c4ce1562d8fabd1660fed662a55fd2b736ef (diff)
pcloud: 1.9.9 -> 1.10.0
Diffstat (limited to 'pkgs/applications/networking/pcloud')
-rw-r--r--pkgs/applications/networking/pcloud/default.nix35
1 files changed, 24 insertions, 11 deletions
diff --git a/pkgs/applications/networking/pcloud/default.nix b/pkgs/applications/networking/pcloud/default.nix
index 21b75cfe8846d..13175aaca6713 100644
--- a/pkgs/applications/networking/pcloud/default.nix
+++ b/pkgs/applications/networking/pcloud/default.nix
@@ -15,23 +15,35 @@
 # ^1 https://github.com/NixOS/nixpkgs/issues/69338
 
 {
- # Build dependencies
- appimageTools, autoPatchelfHook, fetchzip, lib, stdenv
-
- # Runtime dependencies;
- # A few additional ones (e.g. Node) are already shipped together with the
- # AppImage, so we don't have to duplicate them here.
-, alsa-lib, dbus-glib, fuse, gsettings-desktop-schemas, gtk3, libdbusmenu-gtk2, libXdamage, nss, udev
+  # Build dependencies
+  appimageTools
+, autoPatchelfHook
+, fetchzip
+, lib
+, stdenv
+
+  # Runtime dependencies;
+  # A few additional ones (e.g. Node) are already shipped together with the
+  # AppImage, so we don't have to duplicate them here.
+, alsa-lib
+, dbus-glib
+, fuse
+, gsettings-desktop-schemas
+, gtk3
+, libdbusmenu-gtk2
+, libXdamage
+, nss
+, udev
 }:
 
 let
   pname = "pcloud";
-  version = "1.9.9";
-  code = "XZWTVkVZQM0GNXA4hrFGPkefzUUWVLKOpPIX";
+  version = "1.10.0";
+  code = "XZCy4sVZGb7r8VpDE4SCv2QI3OYx1HYChIvy";
   # Archive link's codes: https://www.pcloud.com/release-notes/linux.html
   src = fetchzip {
     url = "https://api.pcloud.com/getpubzip?code=${code}&filename=${pname}-${version}.zip";
-    hash = "sha256-8566vKrE3/QCm4qW9KxEAO+r+YfMRYOhV2Da7qic48M=";
+    hash = "sha256-kzID1y/jVuqFfD/PIUR2TFa0AvxKVcfNQ4ZXiHx0gRk=";
   };
 
   appimageContents = appimageTools.extractType2 {
@@ -39,7 +51,8 @@ let
     src = "${src}/pcloud";
   };
 
-in stdenv.mkDerivation {
+in
+stdenv.mkDerivation {
   inherit pname version;
 
   src = appimageContents;