2022-12-29 23:45:51 +03:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, appimageTools
|
|
|
|
, makeWrapper
|
|
|
|
, electron
|
|
|
|
, git
|
|
|
|
}:
|
2021-03-20 19:57:39 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "logseq";
|
2022-12-29 22:35:02 +03:00
|
|
|
version = "0.8.15";
|
2021-03-20 19:57:39 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/logseq/logseq/releases/download/${version}/logseq-linux-x64-${version}.AppImage";
|
2022-12-29 22:35:02 +03:00
|
|
|
sha256 = "sha256-lE/bO/zpqChvdf8vfNqbC5iIpXAZDb36/N7Tpsj7PWY=";
|
2021-03-20 19:57:39 +03:00
|
|
|
name = "${pname}-${version}.AppImage";
|
|
|
|
};
|
|
|
|
|
|
|
|
appimageContents = appimageTools.extract {
|
2022-08-08 19:10:37 +03:00
|
|
|
inherit pname src version;
|
2021-03-20 19:57:39 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
dontUnpack = true;
|
|
|
|
dontConfigure = true;
|
|
|
|
dontBuild = true;
|
|
|
|
|
2022-06-15 05:44:34 +03:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2021-03-20 19:57:39 +03:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mkdir -p $out/bin $out/share/${pname} $out/share/applications
|
|
|
|
cp -a ${appimageContents}/{locales,resources} $out/share/${pname}
|
|
|
|
cp -a ${appimageContents}/Logseq.desktop $out/share/applications/${pname}.desktop
|
|
|
|
|
2022-06-15 05:44:34 +03:00
|
|
|
# remove the `git` in `dugite` because we want the `git` in `nixpkgs`
|
|
|
|
chmod +w -R $out/share/${pname}/resources/app/node_modules/dugite/git
|
|
|
|
chmod +w $out/share/${pname}/resources/app/node_modules/dugite
|
|
|
|
rm -rf $out/share/${pname}/resources/app/node_modules/dugite/git
|
|
|
|
chmod -w $out/share/${pname}/resources/app/node_modules/dugite
|
|
|
|
|
2021-03-20 19:57:39 +03:00
|
|
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
|
|
|
--replace Exec=Logseq Exec=${pname} \
|
|
|
|
--replace Icon=Logseq Icon=$out/share/${pname}/resources/app/icons/logseq.png
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = ''
|
2022-06-15 05:44:34 +03:00
|
|
|
# set the env "LOCAL_GIT_DIRECTORY" for dugite so that we can use the git in nixpkgs
|
2021-12-12 07:00:34 +03:00
|
|
|
makeWrapper ${electron}/bin/electron $out/bin/${pname} \
|
2022-06-15 05:44:34 +03:00
|
|
|
--set "LOCAL_GIT_DIRECTORY" ${git} \
|
2021-03-20 19:57:39 +03:00
|
|
|
--add-flags $out/share/${pname}/resources/app
|
|
|
|
'';
|
|
|
|
|
|
|
|
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";
|
2022-12-29 23:45:51 +03:00
|
|
|
changelog = "https://github.com/logseq/logseq/releases/tag/${version}";
|
2021-03-20 19:57:39 +03:00
|
|
|
license = licenses.agpl3Plus;
|
|
|
|
maintainers = with maintainers; [ weihua ];
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|