about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/ferdium
diff options
context:
space:
mode:
authorAndré Silva <andrerfosilva@gmail.com>2024-04-05 11:35:08 +0100
committerAndré Silva <andrerfosilva@gmail.com>2024-04-05 11:36:46 +0100
commit33caf57e8f4b084d6424fc41328800179c12cdb3 (patch)
tree051142469ebc0f732792eedbf1cf372d11d125bf /pkgs/applications/networking/instant-messengers/ferdium
parent6bf2d57ed35677ba89bf9c32e6e2f25bf1f27b51 (diff)
ferdium: 6.7.1 -> 6.7.2
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/ferdium')
-rw-r--r--pkgs/applications/networking/instant-messengers/ferdium/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/networking/instant-messengers/ferdium/default.nix b/pkgs/applications/networking/instant-messengers/ferdium/default.nix
index a2fe31c1099de..294564dc952f9 100644
--- a/pkgs/applications/networking/instant-messengers/ferdium/default.nix
+++ b/pkgs/applications/networking/instant-messengers/ferdium/default.nix
@@ -1,4 +1,4 @@
-{ lib, mkFranzDerivation, fetchurl, xorg, nix-update-script, stdenv }:
+{ lib, mkFranzDerivation, fetchurl, xorg, stdenv }:
 
 let
   arch = {
@@ -6,13 +6,14 @@ let
     aarch64-linux = "arm64";
   }."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
   hash = {
-    amd64-linux_hash = "sha256-ERAMFb69Y2kWiHIBn4ITEZJlx+YIpzqDye80vchOXl0=";
-    arm64-linux_hash = "sha256-B3zlhxJQaDoZ69nu/dXUbY2qxJ6FAp4CqU8+TLoNwsg=";
+    amd64-linux_hash = "sha256-RH8iHqJ0Nd3wkXmv/ZGX5JeWtxyJtVLVb0tz6tnkjrw=";
+    arm64-linux_hash = "sha256-0gvkabuxRqkMeyZiOSyT6C7v767+uCrsXE8qk0y0mYM=";
   }."${arch}-linux_hash";
-in mkFranzDerivation rec {
+in
+mkFranzDerivation rec {
   pname = "ferdium";
   name = "Ferdium";
-  version = "6.7.1";
+  version = "6.7.2";
   src = fetchurl {
     url = "https://github.com/ferdium/ferdium-app/releases/download/v${version}/Ferdium-linux-${version}-${arch}.deb";
     inherit hash;