notion-app: 4.24.0 -> 7.24.0 (#538853)

This commit is contained in:
Oleksii Filonenko
2026-07-13 01:47:22 +00:00
committed by GitHub
4 changed files with 18 additions and 15 deletions
-12
View File
@@ -1,12 +0,0 @@
{
"x86_64-darwin": {
"version": "4.24.0",
"url": "https://desktop-release.notion-static.com/Notion-4.24.0.zip",
"hash": "sha512-E/DXvtRD3HFNsliQqFpLG4xoAJIcqWX3xkLNTDMxy8bssc5V9/dN2K3AGLnN8HUj9+FwWySNCJhFPDqzf/nyTQ=="
},
"aarch64-darwin": {
"version": "4.24.0",
"url": "https://desktop-release.notion-static.com/Notion-arm64-4.24.0.zip",
"hash": "sha512-b0zeG0dBPxMigOb+1o8riB3i9HbKdJ+oZYY02MILpIg70uUttq5f4j5ekZ8d5xwkIHGF9wqhqUddRdyb+qXxtw=="
}
}
+5 -2
View File
@@ -6,7 +6,7 @@
}:
let
info =
(lib.importJSON ./info.json)."${stdenvNoCC.hostPlatform.parsed.cpu.name}-darwin"
(lib.importJSON ./sources.json)."${stdenvNoCC.hostPlatform.parsed.cpu.name}-darwin"
or (throw "Unsupported CPU architecture: ${stdenvNoCC.hostPlatform.parsed.cpu.name}");
in
stdenvNoCC.mkDerivation (finalAttrs: {
@@ -32,7 +32,10 @@ stdenvNoCC.mkDerivation (finalAttrs: {
description = "App to write, plan, collaborate, and get organised";
homepage = "https://www.notion.so/";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ xiaoxiangmoe ];
maintainers = with lib.maintainers; [
xiaoxiangmoe
pradyuman
];
platforms = [
"x86_64-darwin"
"aarch64-darwin"
+12
View File
@@ -0,0 +1,12 @@
{
"x86_64-darwin": {
"version": "7.24.0",
"url": "https://desktop-release.notion-static.com/Notion-7.24.0.zip",
"hash": "sha512-3X7E6ZSEJMrArof7p/OgqUk4i3cewF0zMTPVhkhSgNVzOqHt9kvthGIpKUN6M/u0xdYAkRQgSWHkJ/RoA5Q6Hw=="
},
"aarch64-darwin": {
"version": "7.24.0",
"url": "https://desktop-release.notion-static.com/Notion-arm64-7.24.0.zip",
"hash": "sha512-tQVL3z0SOMOeGaqYr4Gq1tULj/kKy4qmmsJN3uwCwDXkmenzLGCWiEmWmkK52T2xW8mMrbSBAAZGNDi0qQw5yA=="
}
}
+1 -1
View File
@@ -57,7 +57,7 @@ async function getInfo(liveCheckFile) {
}
async function main() {
const filePath = path.join(__dirname, "../info.json");
const filePath = path.join(__dirname, "../sources.json");
/** @type {InfoMap} */
const oldInfo = JSON.parse(
await fsPromises.readFile(filePath, { encoding: "utf-8" })