notesnook: 3.0.19 -> 3.2.4 (#443635)

authored by isabelroses.com and committed by GitHub 27fcb2c1 534d4ecb

+7 -4
+7 -4
pkgs/by-name/no/notesnook/package.nix
··· 9 10 let 11 pname = "notesnook"; 12 - version = "3.0.19"; 13 14 inherit (stdenv.hostPlatform) system; 15 throwSystem = throw "Unsupported system: ${system}"; ··· 17 suffix = 18 { 19 x86_64-linux = "linux_x86_64.AppImage"; 20 x86_64-darwin = "mac_x64.dmg"; 21 aarch64-darwin = "mac_arm64.dmg"; 22 } ··· 26 url = "https://github.com/streetwriters/notesnook/releases/download/v${version}/notesnook_${suffix}"; 27 hash = 28 { 29 - x86_64-linux = "sha256-yCzREyFyGoAPXVVnNX6GUrr83oaPtoNOgZOOd6vJD1Q="; 30 - x86_64-darwin = "sha256-WciEpt0vUuXS6YeZkbyFGqQaotXoZkWnkkn5B6/JXwE="; 31 - aarch64-darwin = "sha256-iP3Xd/otYEVwU85U2dlFcX9QjDq2CbIqHmcDYVxzqzI="; 32 } 33 .${system} or throwSystem; 34 }; ··· 53 ]; 54 platforms = [ 55 "x86_64-linux" 56 "x86_64-darwin" 57 "aarch64-darwin" 58 ];
··· 9 10 let 11 pname = "notesnook"; 12 + version = "3.2.4"; 13 14 inherit (stdenv.hostPlatform) system; 15 throwSystem = throw "Unsupported system: ${system}"; ··· 17 suffix = 18 { 19 x86_64-linux = "linux_x86_64.AppImage"; 20 + aarch64-linux = "linux_arm64.AppImage"; 21 x86_64-darwin = "mac_x64.dmg"; 22 aarch64-darwin = "mac_arm64.dmg"; 23 } ··· 27 url = "https://github.com/streetwriters/notesnook/releases/download/v${version}/notesnook_${suffix}"; 28 hash = 29 { 30 + x86_64-linux = "sha256-n4yDBaDq09idmjRZ+y2zT7rZcI4wsDhMidx9sNox5cM="; 31 + aarch64-linux = "sha256-UQFySvvs+paCzt2XSrbYiChEQJIbef3rCOST1r+zZx8="; 32 + x86_64-darwin = "sha256-42US8m6ZbGTUNkU0p4y0pgXKiSsjZZHlQhwv2/LDlO4="; 33 + aarch64-darwin = "sha256-eJVyuL5nBGMr8WhOK4NOMNSMYBASQZbsbLPLgug7ZNs="; 34 } 35 .${system} or throwSystem; 36 }; ··· 55 ]; 56 platforms = [ 57 "x86_64-linux" 58 + "aarch64-linux" 59 "x86_64-darwin" 60 "aarch64-darwin" 61 ];