mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
80 lines
2.6 KiB
Nix
80 lines
2.6 KiB
Nix
{ lib, stdenv, appimageTools, fetchurl, makeWrapper, undmg }:
|
|
|
|
let
|
|
pname = "joplin-desktop";
|
|
version = "2.14.17";
|
|
|
|
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-u4wEchyljurmwVZsRnmUBITZUR6SxDxyGczZjXNsJkg=";
|
|
x86_64-darwin = "sha256-KjNwAnJZGX/DvHDPw15vGlSbJ47s6YT59EalARt1mx4=";
|
|
aarch64-darwin = "sha256-OYpsHPI+7riMVNAp2JpBlmdFdJUSNqNvBmeYHDw6yzY=";
|
|
}.${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 = [ undmg ];
|
|
|
|
sourceRoot = "Joplin.app";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/Applications/Joplin.app
|
|
cp -R . $out/Applications/Joplin.app
|
|
'';
|
|
};
|
|
in
|
|
if stdenv.isDarwin
|
|
then darwin
|
|
else linux
|