Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

logseq: 0.10.9-unstable-2025-03-11 -> 0.10.12, sign binaries on darwin (#405683)

authored by Toma and committed by GitHub 6909f294 7917da39

+7 -6
+7 -6
pkgs/by-name/lo/logseq/package.nix
··· 5 5 fetchFromGitHub, 6 6 fetchYarnDeps, 7 7 replaceVars, 8 - runCommand, 9 8 writeShellScriptBin, 10 9 11 10 copyDesktopItems, 12 11 cctools, 13 12 clojure, 13 + darwin, 14 14 makeDesktopItem, 15 15 makeWrapper, 16 16 nodejs, ··· 26 26 27 27 stdenv.mkDerivation (finalAttrs: { 28 28 pname = "logseq"; 29 - version = "0.10.9-unstable-2025-03-11"; 29 + version = "0.10.12"; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "logseq"; 33 33 repo = "logseq"; 34 - rev = "ac0a0dae727c46b348d0f1410138d5e49d446692"; 35 - hash = "sha256-esCB51BeWnni/JFL4yMKcJj5lka2+hLpcvWGify0T2o="; 34 + tag = finalAttrs.version; 35 + hash = "sha256-SUzt4hYHE6XJOEMxFp2a0om2oVUk1MHQUteGFiM9Lkc="; 36 36 }; 37 37 38 38 patches = [ ··· 98 98 yarnOfflineCacheRoot = fetchYarnDeps { 99 99 name = "logseq-${finalAttrs.version}-yarn-deps-root"; 100 100 inherit (finalAttrs) src; 101 - hash = "sha256-z4G675kxfpmG2AJlbK5bfeUUgX7jz1ys2FlMNHJqrQ4="; 101 + hash = "sha256-sbC6WQLjEHIKTuejSQXplQOWZwUmBJdGXuAkilQGjYs="; 102 102 }; 103 103 104 104 # ./static and ./resources are combined into ./static by the build process ··· 107 107 name = "logseq-${finalAttrs.version}-yarn-deps-static-resources"; 108 108 inherit (finalAttrs) src; 109 109 sourceRoot = "${finalAttrs.src.name}/static"; 110 - hash = "sha256-xuZj2EKHxvkiDPKMLh3ZSvLT54k+buHqg9lRTFv8rNI="; 110 + hash = "sha256-01t6lolMbBL5f6SFk4qTkTx6SQXWtHuVkBhDwW+HScc="; 111 111 }; 112 112 113 113 yarnOfflineCacheAmplify = fetchYarnDeps { ··· 151 151 ] 152 152 ++ lib.optionals stdenv.hostPlatform.isDarwin [ 153 153 cctools 154 + darwin.autoSignDarwinBinariesHook 154 155 xcbuild 155 156 ]; 156 157