nixpkgs/pkgs/applications/office/trilium/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

119 lines
3.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, nixosTests, fetchurl, autoPatchelfHook, atomEnv, makeWrapper, makeDesktopItem, copyDesktopItems, libxshmfence, wrapGAppsHook }:
2018-12-30 22:20:50 +00:00
let
metaCommon = with lib; {
description = "Hierarchical note taking application with focus on building large personal knowledge bases";
homepage = "https://github.com/zadam/trilium";
2021-03-02 13:28:21 +00:00
license = licenses.agpl3Plus;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
2019-12-22 13:34:54 +00:00
platforms = [ "x86_64-linux" ];
2021-03-02 13:38:21 +00:00
maintainers = with maintainers; [ fliegendewurst ];
2019-12-05 13:07:17 +00:00
};
version = "0.54.3";
2020-04-29 08:40:12 +01:00
desktopSource.url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-${version}.tar.xz";
desktopSource.sha256 = "1r7gzvcgdy8i5z5l8z4xw6s44mplr6h1pnpp19di953zmywbdi0f";
2020-04-29 08:40:12 +01:00
serverSource.url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-server-${version}.tar.xz";
serverSource.sha256 = "1c3mcga87ifdlgxdhsgxndmqqkjl2glxilyf702wf1bpscsirc4z";
in {
2020-08-03 09:32:27 +01:00
trilium-desktop = stdenv.mkDerivation rec {
pname = "trilium-desktop";
inherit version;
meta = metaCommon // {
mainProgram = "trilium";
};
2020-04-29 08:40:12 +01:00
src = fetchurl desktopSource;
2020-08-03 09:32:27 +01:00
nativeBuildInputs = [
autoPatchelfHook
makeWrapper
wrapGAppsHook
copyDesktopItems
];
2020-08-03 09:32:27 +01:00
buildInputs = atomEnv.packages ++ [ libxshmfence ];
desktopItems = [
(makeDesktopItem {
name = "Trilium";
exec = "trilium";
icon = "trilium";
comment = meta.description;
desktopName = "Trilium Notes";
categories = [ "Office" ];
})
];
2020-08-03 09:32:27 +01:00
installPhase = ''
2021-03-22 17:47:11 +00:00
runHook preInstall
mkdir -p $out/bin
mkdir -p $out/share/trilium
mkdir -p $out/share/icons/hicolor/128x128/apps
2020-08-03 09:32:27 +01:00
cp -r ./* $out/share/trilium
ln -s $out/share/trilium/trilium $out/bin/trilium
2020-08-03 09:32:27 +01:00
ln -s $out/share/trilium/icon.png $out/share/icons/hicolor/128x128/apps/trilium.png
2021-03-22 17:47:11 +00:00
runHook postInstall
'';
2020-08-03 09:32:27 +01:00
# LD_LIBRARY_PATH "shouldn't" be needed, remove when possible :)
preFixup = ''
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : ${atomEnv.libPath})
'';
2020-08-03 09:32:27 +01:00
dontStrip = true;
passthru.updateScript = ./update.sh;
2019-12-05 13:07:17 +00:00
};
trilium-server = stdenv.mkDerivation rec {
pname = "trilium-server";
inherit version;
meta = metaCommon;
2019-12-05 13:07:17 +00:00
2020-04-29 08:40:12 +01:00
src = fetchurl serverSource;
2019-12-05 13:07:17 +00:00
nativeBuildInputs = [
autoPatchelfHook
];
buildInputs = [
stdenv.cc.cc.lib
];
2021-03-02 13:28:21 +00:00
patches = [
# patch logger to use console instead of rolling files
./0001-Use-console-logger-instead-of-rolling-files.patch
];
2019-12-05 13:07:17 +00:00
installPhase = ''
2021-03-02 13:28:21 +00:00
runHook preInstall
2019-12-05 13:07:17 +00:00
mkdir -p $out/bin
mkdir -p $out/share/trilium-server
cp -r ./* $out/share/trilium-server
2021-03-02 13:28:21 +00:00
runHook postInstall
2019-12-05 13:07:17 +00:00
'';
postFixup = ''
cat > $out/bin/trilium-server <<EOF
#!${stdenv.cc.shell}
cd $out/share/trilium-server
exec ./node/bin/node src/www
EOF
chmod a+x $out/bin/trilium-server
'';
2019-12-14 10:08:31 +00:00
passthru.tests = {
trilium-server = nixosTests.trilium-server;
};
2018-12-30 22:20:50 +00:00
};
}