joplin-desktop: Added aarch64-darwin support
This commit is contained in:
parent
66ce081faf
commit
a57a4d2d0e
@ -11,6 +11,7 @@ let
|
|||||||
suffix = {
|
suffix = {
|
||||||
x86_64-linux = "AppImage";
|
x86_64-linux = "AppImage";
|
||||||
x86_64-darwin = "dmg";
|
x86_64-darwin = "dmg";
|
||||||
|
aarch64-darwin = "dmg";
|
||||||
}.${system} or throwSystem;
|
}.${system} or throwSystem;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
@ -18,6 +19,7 @@ let
|
|||||||
sha256 = {
|
sha256 = {
|
||||||
x86_64-linux = "sha256-r64+y+LfMrJnUdabVdak5+LQB50YLOuMXftlZ4s3C/w=";
|
x86_64-linux = "sha256-r64+y+LfMrJnUdabVdak5+LQB50YLOuMXftlZ4s3C/w=";
|
||||||
x86_64-darwin = "sha256-/dvaYHa7PT6FA63kmtjrErJZI9O+hIlKvHnf5RnfeZg=";
|
x86_64-darwin = "sha256-/dvaYHa7PT6FA63kmtjrErJZI9O+hIlKvHnf5RnfeZg=";
|
||||||
|
aarch64-darwin = "sha256-/dvaYHa7PT6FA63kmtjrErJZI9O+hIlKvHnf5RnfeZg=";
|
||||||
}.${system} or throwSystem;
|
}.${system} or throwSystem;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -37,7 +39,7 @@ let
|
|||||||
homepage = "https://joplinapp.org";
|
homepage = "https://joplinapp.org";
|
||||||
license = licenses.agpl3Plus;
|
license = licenses.agpl3Plus;
|
||||||
maintainers = with maintainers; [ hugoreeves qjoly ];
|
maintainers = with maintainers; [ hugoreeves qjoly ];
|
||||||
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin"];
|
||||||
};
|
};
|
||||||
|
|
||||||
linux = appimageTools.wrapType2 rec {
|
linux = appimageTools.wrapType2 rec {
|
||||||
|
Loading…
Reference in New Issue
Block a user