summary refs log tree commit diff
path: root/pkgs/applications/misc/logseq/default.nix
diff options
context:
space:
mode:
authorkilianar <mail@kilianar.de>2023-11-01 15:38:54 +0100
committerkilianar <mail@kilianar.de>2023-11-01 15:38:54 +0100
commitc52843c96733430374790359d68c3cd401c66092 (patch)
treed6280f12780e250534502902a65cb75ccaefa1de /pkgs/applications/misc/logseq/default.nix
parent5363991a6fbb672549b6c379cdc1e423e5bf2d06 (diff)
downloadnixpkgs-c52843c96733430374790359d68c3cd401c66092.tar
nixpkgs-c52843c96733430374790359d68c3cd401c66092.tar.gz
nixpkgs-c52843c96733430374790359d68c3cd401c66092.tar.bz2
nixpkgs-c52843c96733430374790359d68c3cd401c66092.tar.lz
nixpkgs-c52843c96733430374790359d68c3cd401c66092.tar.xz
nixpkgs-c52843c96733430374790359d68c3cd401c66092.tar.zst
nixpkgs-c52843c96733430374790359d68c3cd401c66092.zip
logseq: 0.9.19 -> 0.9.20
https://github.com/logseq/logseq/releases/tag/0.9.20
Diffstat (limited to 'pkgs/applications/misc/logseq/default.nix')
-rw-r--r--pkgs/applications/misc/logseq/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/misc/logseq/default.nix b/pkgs/applications/misc/logseq/default.nix
index 4b07723fea9..a40064bb5ff 100644
--- a/pkgs/applications/misc/logseq/default.nix
+++ b/pkgs/applications/misc/logseq/default.nix
@@ -4,7 +4,7 @@
 , appimageTools
 , makeWrapper
 # graphs will not sync without matching upstream's major electron version
-, electron_24
+, electron_25
 , git
 , nix-update-script
 }:
@@ -14,11 +14,11 @@ stdenv.mkDerivation (finalAttrs: let
 
 in {
   pname = "logseq";
-  version = "0.9.19";
+  version = "0.9.20";
 
   src = fetchurl {
     url = "https://github.com/logseq/logseq/releases/download/${version}/logseq-linux-x64-${version}.AppImage";
-    hash = "sha256-Y3AeeJc+PYJdckpOma5ZDbVtBbjBTfNNDqTip4l02/E=";
+    hash = "sha256-iT0Gc/ePx1tUNTPoE2Ol+dHUmbS4CkneZbyraRBx5Ak=";
     name = "${pname}-${version}.AppImage";
   };
 
@@ -57,7 +57,7 @@ in {
 
   postFixup = ''
     # set the env "LOCAL_GIT_DIRECTORY" for dugite so that we can use the git in nixpkgs
-    makeWrapper ${electron_24}/bin/electron $out/bin/${pname} \
+    makeWrapper ${electron_25}/bin/electron $out/bin/${pname} \
       --set "LOCAL_GIT_DIRECTORY" ${git} \
       --add-flags $out/share/${pname}/resources/app \
       --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" \