about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJosé Ribeiro <work@jlbribeiro.com>2024-06-13 04:24:58 +0100
committerJosé Ribeiro <work@jlbribeiro.com>2024-06-13 04:24:58 +0100
commit5e4fd0a2a241359dff7caaeb361f85c097781967 (patch)
treedc7a5ff66e294db034094b0af69d321c12bf7679
parent81b5de61a46ea3b3087d4863d77a216c06ae9df1 (diff)
feishin: upgrade electron to v30
Addresses #319252: v27 has been EOL since 2024/04/16.
-rw-r--r--pkgs/applications/audio/feishin/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/feishin/default.nix b/pkgs/applications/audio/feishin/default.nix
index 90561314fec90..98a0c5edebce1 100644
--- a/pkgs/applications/audio/feishin/default.nix
+++ b/pkgs/applications/audio/feishin/default.nix
@@ -3,7 +3,7 @@
   stdenv,
   buildNpmPackage,
   fetchFromGitHub,
-  electron_27,
+  electron_30,
   darwin,
   copyDesktopItems,
   makeDesktopItem,
@@ -20,7 +20,7 @@ let
     hash = "sha256-eNGHrSF/MgRHh0CVc0l8denZIbAnPXwFCZJZcvF+Xtc=";
   };
 
-  electron = electron_27;
+  electron = electron_30;
 in
 buildNpmPackage {
   inherit pname version;