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

126 lines
3.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, nixosTests, fetchurl, autoPatchelfHook, atomEnv, makeWrapper, makeDesktopItem, gtk3, wrapGAppsHook, zlib, libxkbfile }:
2018-12-30 23:20:50 +01:00
let
description = "Trilium Notes is a hierarchical note taking application with focus on building large personal knowledge bases";
2018-12-30 23:20:50 +01:00
desktopItem = makeDesktopItem {
name = "Trilium";
exec = "trilium";
icon = "trilium";
comment = description;
desktopName = "Trilium Notes";
categories = "Office";
};
meta = with lib; {
2019-12-05 14:07:17 +01:00
inherit description;
homepage = "https://github.com/zadam/trilium";
2021-03-02 14:28:21 +01:00
license = licenses.agpl3Plus;
2019-12-22 14:34:54 +01:00
platforms = [ "x86_64-linux" ];
2021-03-02 14:38:21 +01:00
maintainers = with maintainers; [ fliegendewurst ];
2019-12-05 14:07:17 +01:00
};
2021-03-02 14:28:21 +01:00
version = "0.45.10";
2020-04-29 09:40:12 +02:00
desktopSource = {
url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-${version}.tar.xz";
2021-03-02 14:28:21 +01:00
sha256 = "06ykgcak7l3q812c4xrp720db3yq0v2lkrzkmwchlwp5rpwhqpck";
2020-04-29 09:40:12 +02:00
};
serverSource = {
url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-server-${version}.tar.xz";
2021-03-02 14:28:21 +01:00
sha256 = "1252zgyb23vfvy63cqd8jdjbm4w9ddwnp32z5vf1fqvd2rrz6lz9";
2020-04-29 09:40:12 +02:00
};
in {
2020-08-03 10:32:27 +02:00
trilium-desktop = stdenv.mkDerivation rec {
pname = "trilium-desktop";
inherit version;
2019-12-05 14:07:17 +01:00
inherit meta;
2020-04-29 09:40:12 +02:00
src = fetchurl desktopSource;
2020-08-03 10:32:27 +02:00
# Fetch from source repo, no longer included in release.
# (they did special-case icon.png but we want the scalable svg)
# Use the version here to ensure we get any changes.
trilium_svg = fetchurl {
2020-02-11 10:45:37 +01:00
url = "https://raw.githubusercontent.com/zadam/trilium/v${version}/images/trilium.svg";
sha256 = "1rgj7pza20yndfp8n12k93jyprym02hqah36fkk2b3if3kcmwnfg";
};
2020-08-03 10:32:27 +02:00
nativeBuildInputs = [
autoPatchelfHook
makeWrapper
wrapGAppsHook
];
2020-08-03 10:32:27 +02:00
buildInputs = atomEnv.packages ++ [ gtk3 ];
2020-08-03 10:32:27 +02:00
installPhase = ''
mkdir -p $out/bin
mkdir -p $out/share/trilium
mkdir -p $out/share/{applications,icons/hicolor/scalable/apps}
2020-08-03 10:32:27 +02:00
cp -r ./* $out/share/trilium
ln -s $out/share/trilium/trilium $out/bin/trilium
2020-08-03 10:32:27 +02:00
ln -s ${trilium_svg} $out/share/icons/hicolor/scalable/apps/trilium.svg
cp ${desktopItem}/share/applications/* $out/share/applications
'';
2020-08-03 10:32:27 +02:00
# LD_LIBRARY_PATH "shouldn't" be needed, remove when possible :)
preFixup = ''
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : ${atomEnv.libPath})
'';
2020-08-03 10:32:27 +02:00
dontStrip = true;
2019-12-05 14:07:17 +01:00
};
trilium-server = stdenv.mkDerivation rec {
pname = "trilium-server";
inherit version;
inherit meta;
2020-04-29 09:40:12 +02:00
src = fetchurl serverSource;
2019-12-05 14:07:17 +01:00
nativeBuildInputs = [
autoPatchelfHook
];
buildInputs = [
stdenv.cc.cc.lib
zlib
libxkbfile
];
2021-03-02 14:28:21 +01:00
patches = [
# patch logger to use console instead of rolling files
./0001-Use-console-logger-instead-of-rolling-files.patch
];
2019-12-05 14:07:17 +01:00
installPhase = ''
2021-03-02 14:28:21 +01:00
runHook preInstall
2019-12-05 14:07:17 +01:00
mkdir -p $out/bin
mkdir -p $out/share/trilium-server
cp -r ./* $out/share/trilium-server
2021-03-02 14:28:21 +01:00
runHook postInstall
2019-12-05 14:07:17 +01: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 11:08:31 +01:00
passthru.tests = {
trilium-server = nixosTests.trilium-server;
};
2018-12-30 23:20:50 +01:00
};
}