-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
88 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
self: super: { | ||
joplin-desktop = | ||
assert builtins.compareVersions super.joplin-desktop.version "3.0.12" == -1; | ||
self.callPackage | ||
({ lib, stdenv, appimageTools, fetchurl, makeWrapper, _7zz }: | ||
|
||
let | ||
pname = "joplin-desktop"; | ||
version = "3.0.12"; | ||
|
||
inherit (stdenv.hostPlatform) system; | ||
throwSystem = throw "Unsupported system: ${system}"; | ||
|
||
suffix = { | ||
x86_64-linux = ".AppImage"; | ||
x86_64-darwin = ".dmg"; | ||
aarch64-darwin = "-arm64.dmg"; | ||
}.${system} or throwSystem; | ||
|
||
src = fetchurl { | ||
url = | ||
"https://github.com/laurent22/joplin/releases/download/v${version}/Joplin-${version}${suffix}"; | ||
sha256 = { | ||
x86_64-linux = | ||
"sha256-vMz+ZeBHP+9Ugy8KO8lbp8zqC8VHtf1TWw10YytQFSs="; | ||
x86_64-darwin = | ||
"sha256-XZN1jTv/FhJXuFxZ6D6h/vFMdKi84Z9UWfj2CrMgBBA="; | ||
aarch64-darwin = | ||
"sha256-lsODOBkZ4+x5D6Er2/paTzAMKZvqIBVkKrWHh5iRvrk="; | ||
}.${system} or throwSystem; | ||
}; | ||
|
||
appimageContents = | ||
appimageTools.extractType2 { inherit pname version src; }; | ||
|
||
meta = with lib; { | ||
description = | ||
"Open source note taking and to-do application with synchronisation capabilities"; | ||
mainProgram = "joplin-desktop"; | ||
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. | ||
''; | ||
homepage = "https://joplinapp.org"; | ||
license = licenses.agpl3Plus; | ||
maintainers = with maintainers; [ hugoreeves qjoly ]; | ||
platforms = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ]; | ||
}; | ||
|
||
linux = appimageTools.wrapType2 rec { | ||
inherit pname version src meta; | ||
|
||
profile = '' | ||
export LC_ALL=C.UTF-8 | ||
''; | ||
|
||
extraInstallCommands = '' | ||
source "${makeWrapper}/nix-support/setup-hook" | ||
wrapProgram $out/bin/${pname} \ | ||
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform=wayland --enable-features=WaylandWindowDecorations}}" | ||
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 \ | ||
--replace 'Exec=AppRun' 'Exec=${pname}' \ | ||
--replace 'Icon=joplin' "Icon=@joplinapp-desktop" | ||
''; | ||
}; | ||
|
||
darwin = stdenv.mkDerivation { | ||
inherit pname version src meta; | ||
|
||
nativeBuildInputs = [ _7zz ]; | ||
|
||
sourceRoot = "Joplin.app"; | ||
|
||
installPhase = '' | ||
mkdir -p $out/Applications/Joplin.app | ||
cp -R . $out/Applications/Joplin.app | ||
''; | ||
}; | ||
in if stdenv.isDarwin then darwin else linux) { }; | ||
} |