2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, appimageTools, fetchurl, gsettings-desktop-schemas, gtk3, undmg }:
|
2019-01-28 22:00:03 +00:00
|
|
|
|
|
|
|
let
|
2019-04-24 02:48:19 +01:00
|
|
|
pname = "joplin-desktop";
|
2022-02-25 10:15:14 +00:00
|
|
|
version = "2.7.13";
|
2019-04-24 02:48:19 +01:00
|
|
|
name = "${pname}-${version}";
|
2020-06-30 10:09:29 +01:00
|
|
|
|
2020-09-23 18:54:10 +01:00
|
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
throwSystem = throw "Unsupported system: ${system}";
|
|
|
|
|
|
|
|
suffix = {
|
|
|
|
x86_64-linux = "AppImage";
|
|
|
|
x86_64-darwin = "dmg";
|
|
|
|
}.${system} or throwSystem;
|
|
|
|
|
2019-01-28 22:00:03 +00:00
|
|
|
src = fetchurl {
|
2020-09-23 18:54:10 +01:00
|
|
|
url = "https://github.com/laurent22/joplin/releases/download/v${version}/Joplin-${version}.${suffix}";
|
|
|
|
sha256 = {
|
2022-02-25 10:15:14 +00:00
|
|
|
x86_64-linux = "sha256-ObuBcFV5fq2sryC+ETTAH+S19EW+nVlxdVOtOpiBeDs=";
|
|
|
|
x86_64-darwin = "sha256-f0+/kUukP+zIzTSSGO1ctUBd/uCSrAKz+uBnrzpPy5k=";
|
2020-09-23 18:54:10 +01:00
|
|
|
}.${system} or throwSystem;
|
2019-01-28 22:00:03 +00:00
|
|
|
};
|
|
|
|
|
2020-06-30 10:09:29 +01:00
|
|
|
appimageContents = appimageTools.extractType2 {
|
|
|
|
inherit name src;
|
|
|
|
};
|
2020-09-23 18:54:10 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-01-28 22:00:03 +00:00
|
|
|
description = "An open source note taking and to-do application with synchronisation capabilities";
|
|
|
|
longDescription = ''
|
|
|
|
Joplin is a free, open source note taking and to-do application, which can
|
|
|
|
handle a large number of notes organised into notebooks. The notes are
|
|
|
|
searchable, can be copied, tagged and modified either from the
|
|
|
|
applications directly or from your own text editor. The notes are in
|
|
|
|
Markdown format.
|
|
|
|
'';
|
2020-04-16 23:52:22 +01:00
|
|
|
homepage = "https://joplinapp.org";
|
2019-01-28 22:00:03 +00:00
|
|
|
license = licenses.mit;
|
2020-05-28 12:40:13 +01:00
|
|
|
maintainers = with maintainers; [ hugoreeves ];
|
2020-09-23 18:54:10 +01:00
|
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
linux = appimageTools.wrapType2 rec {
|
|
|
|
inherit name src meta;
|
|
|
|
|
|
|
|
profile = ''
|
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS
|
|
|
|
'';
|
|
|
|
|
|
|
|
multiPkgs = null; # no 32bit needed
|
|
|
|
extraPkgs = appimageTools.defaultFhsEnvArgs.multiPkgs;
|
|
|
|
extraInstallCommands = ''
|
|
|
|
mv $out/bin/{${name},${pname}}
|
2020-11-27 15:01:47 +00:00
|
|
|
install -Dm444 ${appimageContents}/@joplinapp-desktop.desktop -t $out/share/applications
|
|
|
|
install -Dm444 ${appimageContents}/@joplinapp-desktop.png -t $out/share/pixmaps
|
|
|
|
substituteInPlace $out/share/applications/@joplinapp-desktop.desktop \
|
2021-07-04 13:28:25 +01:00
|
|
|
--replace 'Exec=AppRun' 'Exec=${pname}' \
|
|
|
|
--replace 'Icon=joplin' "Icon=$out/share/pixmaps/@joplinapp-desktop.png"
|
2020-09-23 18:54:10 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
darwin = stdenv.mkDerivation {
|
|
|
|
inherit name src meta;
|
|
|
|
|
|
|
|
nativeBuildInputs = [ undmg ];
|
|
|
|
|
|
|
|
sourceRoot = "Joplin.app";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/Applications/Joplin.app
|
|
|
|
cp -R . $out/Applications/Joplin.app
|
|
|
|
'';
|
2019-01-28 22:00:03 +00:00
|
|
|
};
|
2020-09-23 18:54:10 +01:00
|
|
|
in
|
|
|
|
if stdenv.isDarwin
|
|
|
|
then darwin
|
|
|
|
else linux
|