mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
7db6808335
Related to https://github.com/logseq/logseq/issues/6880 Logseq publishes graphs by copying application assets into a folder and then the graph files (+/- some operations). In a normal linux distribution the application asset directories are rw but only by root. On nix, the directories are read-only, which leads to the copied directories also being ro and logseq failing to copy the graph files into the target. A fix from the logseq team isn't forthcoming (yet?), so we circumvent the entire ro issue by using run-appimage, which extracts the appimage into a user-writeable directory.
61 lines
1.8 KiB
Nix
61 lines
1.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, appimageTools
|
|
, appimage-run
|
|
, makeWrapper
|
|
, git
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "logseq";
|
|
version = "0.8.16";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/logseq/logseq/releases/download/${version}/logseq-linux-x64-${version}.AppImage";
|
|
sha256 = "sha256-0tIDoNQoqSn1nYm+YdgzXh34aH1e5N8wl9lqGbQoOeU=";
|
|
name = "${pname}-${version}.AppImage";
|
|
};
|
|
|
|
appimageContents = appimageTools.extract {
|
|
inherit pname src version;
|
|
};
|
|
|
|
dontUnpack = true;
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin $out/share/${pname} $out/share/applications $out/share/${pname}/resources/app/icons
|
|
cp -a ${appimageContents}/resources/app/icons/logseq.png $out/share/${pname}/resources/app/icons/logseq.png
|
|
cp -a ${appimageContents}/Logseq.desktop $out/share/applications/${pname}.desktop
|
|
|
|
# set the env "LOCAL_GIT_DIRECTORY" for dugite so that we can use the git in nixpkgs
|
|
makeWrapper ${appimage-run}/bin/appimage-run $out/bin/logseq \
|
|
--set "LOCAL_GIT_DIRECTORY" ${git} \
|
|
--add-flags ${src}
|
|
|
|
# Make the desktop entry run the app using appimage-run
|
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
|
--replace Exec=Logseq "Exec=$out/bin/logseq" \
|
|
--replace Icon=Logseq Icon=$out/share/${pname}/resources/app/icons/logseq.png
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with lib; {
|
|
description = "A local-first, non-linear, outliner notebook for organizing and sharing your personal knowledge base";
|
|
homepage = "https://github.com/logseq/logseq";
|
|
changelog = "https://github.com/logseq/logseq/releases/tag/${version}";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ weihua ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|