summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidak <davidak@users.noreply.github.com>2024-02-24 20:50:42 +0100
committerGitHub <noreply@github.com>2024-02-24 20:50:42 +0100
commit036d304f6ddaf81c770574b2fadab4f7c34cc73f (patch)
treee8bdfd79dbfecb631d82b5e13e954b201e021a1d
parentMerge pull request #291169 from NixOS/backport-291003-to-release-23.11 (diff)
parentlogseq: 0.10.5 -> 0.10.6 (diff)
downloadnixpkgs-036d304f6ddaf81c770574b2fadab4f7c34cc73f.tar.gz
Merge pull request #285583 from schmittlauch/backport2311-logseq-0.10.5
[23.11] logseq 0.9.20 -> 0.10.6
-rw-r--r--pkgs/applications/misc/logseq/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/applications/misc/logseq/default.nix b/pkgs/applications/misc/logseq/default.nix
index a40064bb5ff8..57248b6b7744 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_25
+, electron_27
, git
, nix-update-script
}:
@@ -14,11 +14,11 @@ stdenv.mkDerivation (finalAttrs: let
in {
pname = "logseq";
- version = "0.9.20";
+ version = "0.10.6";
src = fetchurl {
url = "https://github.com/logseq/logseq/releases/download/${version}/logseq-linux-x64-${version}.AppImage";
- hash = "sha256-iT0Gc/ePx1tUNTPoE2Ol+dHUmbS4CkneZbyraRBx5Ak=";
+ hash = "sha256-OUQh+6HRnzxw8Nn/OkU+DkjPKWKpMN0xchD1vPU3KV8=";
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_25}/bin/electron $out/bin/${pname} \
+ makeWrapper ${electron_27}/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}}" \
@@ -66,12 +66,12 @@ in {
passthru.updateScript = nix-update-script { };
- meta = with lib; {
+ meta = {
description = "A local-first, non-linear, outliner notebook for organizing and sharing your personal knowledge base";
homepage = "https://github.com/logseq/logseq";
changelog = "https://github.com/logseq/logseq/releases/tag/${version}";
- license = licenses.agpl3Plus;
- maintainers = with maintainers; [ ];
+ license = lib.licenses.agpl3Plus;
+ maintainers = with lib.maintainers; [ ];
platforms = [ "x86_64-linux" ];
};
})