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