2020-01-21 13:35:39 +00:00
|
|
|
{ appimageTools, fetchurl, lib, gsettings-desktop-schemas, gtk3, makeDesktopItem }:
|
2019-01-28 22:00:03 +00:00
|
|
|
|
|
|
|
let
|
2019-04-24 02:48:19 +01:00
|
|
|
pname = "joplin-desktop";
|
2020-04-14 21:33:29 +01:00
|
|
|
version = "1.0.200";
|
2020-01-21 13:35:39 +00:00
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "Joplin";
|
|
|
|
exec = "joplin-desktop";
|
|
|
|
type = "Application";
|
|
|
|
desktopName = "Joplin";
|
|
|
|
};
|
2019-04-24 02:48:19 +01:00
|
|
|
in appimageTools.wrapType2 rec {
|
|
|
|
name = "${pname}-${version}";
|
2019-01-28 22:00:03 +00:00
|
|
|
src = fetchurl {
|
2020-01-01 07:59:31 +00:00
|
|
|
url = "https://github.com/laurent22/joplin/releases/download/v${version}/Joplin-${version}.AppImage";
|
2020-04-14 21:33:29 +01:00
|
|
|
sha256 = "14gwv8i6dprvl96mifadq0zj77a82rww8xd5bmzm8ql6sidi2216";
|
2019-01-28 22:00:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-04-24 02:48:19 +01:00
|
|
|
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
|
2019-01-28 22:00:03 +00:00
|
|
|
'';
|
|
|
|
|
2019-04-24 02:48:19 +01:00
|
|
|
multiPkgs = null; # no 32bit needed
|
|
|
|
extraPkgs = appimageTools.defaultFhsEnvArgs.multiPkgs;
|
2020-01-21 13:35:39 +00:00
|
|
|
extraInstallCommands = ''
|
|
|
|
mkdir -p $out/share/applications
|
|
|
|
ln -s ${desktopItem}/share/applications/* $out/share/applications
|
|
|
|
mv $out/bin/{${name},${pname}}
|
|
|
|
'';
|
|
|
|
|
2019-04-24 02:48:19 +01: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-01 02:11:51 +01:00
|
|
|
homepage = "https://joplin.cozic.net/";
|
2019-01-28 22:00:03 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ rafaelgg raquelgb ];
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|