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

120 lines
3.2 KiB
Nix
Raw Normal View History

2019-12-14 10:08:31 +00:00
{ stdenv, nixosTests, fetchurl, autoPatchelfHook, atomEnv, makeWrapper, makeDesktopItem, gtk3, wrapGAppsHook, zlib, libxkbfile }:
2018-12-30 22:20:50 +00:00
let
description = "Trilium Notes is a hierarchical note taking application with focus on building large personal knowledge bases";
2018-12-30 22:20:50 +00:00
desktopItem = makeDesktopItem {
name = "Trilium";
exec = "trilium";
icon = "trilium";
comment = description;
desktopName = "Trilium Notes";
categories = "Office";
};
2019-12-05 13:07:17 +00:00
meta = with stdenv.lib; {
inherit description;
homepage = "https://github.com/zadam/trilium";
2019-12-05 13:07:17 +00:00
license = licenses.agpl3;
2019-12-22 13:34:54 +00:00
platforms = [ "x86_64-linux" ];
2019-12-05 13:07:17 +00:00
maintainers = with maintainers; [ emmanuelrosa dtzWill kampka ];
};
2020-08-03 08:32:27 +00:00
version = "0.43.3";
2020-04-29 07:40:12 +00:00
desktopSource = {
url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-${version}.tar.xz";
2020-08-03 08:32:27 +00:00
sha256 = "1k9vcs7pwa89bzivqp0gfs45jzqw216fpypg3ja4n2dzn4qkv2as";
2020-04-29 07:40:12 +00:00
};
serverSource = {
url = "https://github.com/zadam/trilium/releases/download/v${version}/trilium-linux-x64-server-${version}.tar.xz";
2020-08-03 08:32:27 +00:00
sha256 = "1n3v7wdav6mvgcy72mmfhncsa74i0ax1ij5rjczgfjjyiyc5y0rk";
2020-04-29 07:40:12 +00:00
};
in {
2020-08-03 08:32:27 +00:00
trilium-desktop = stdenv.mkDerivation rec {
pname = "trilium-desktop";
inherit version;
2019-12-05 13:07:17 +00:00
inherit meta;
2020-04-29 07:40:12 +00:00
src = fetchurl desktopSource;
2020-08-03 08:32:27 +00: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 09:45:37 +00:00
url = "https://raw.githubusercontent.com/zadam/trilium/v${version}/images/trilium.svg";
sha256 = "1rgj7pza20yndfp8n12k93jyprym02hqah36fkk2b3if3kcmwnfg";
};
2020-08-03 08:32:27 +00:00
nativeBuildInputs = [
autoPatchelfHook
makeWrapper
wrapGAppsHook
];
2020-08-03 08:32:27 +00:00
buildInputs = atomEnv.packages ++ [ gtk3 ];
2020-08-03 08:32:27 +00:00
installPhase = ''
mkdir -p $out/bin
mkdir -p $out/share/trilium
mkdir -p $out/share/{applications,icons/hicolor/scalable/apps}
2020-08-03 08:32:27 +00:00
cp -r ./* $out/share/trilium
ln -s $out/share/trilium/trilium $out/bin/trilium
2020-08-03 08:32:27 +00:00
ln -s ${trilium_svg} $out/share/icons/hicolor/scalable/apps/trilium.svg
cp ${desktopItem}/share/applications/* $out/share/applications
'';
2020-08-03 08:32:27 +00:00
# LD_LIBRARY_PATH "shouldn't" be needed, remove when possible :)
preFixup = ''
gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : ${atomEnv.libPath})
'';
2020-08-03 08:32:27 +00:00
dontStrip = true;
2019-12-05 13:07:17 +00:00
};
trilium-server = stdenv.mkDerivation rec {
pname = "trilium-server";
inherit version;
inherit meta;
2020-04-29 07:40:12 +00:00
src = fetchurl serverSource;
2019-12-05 13:07:17 +00:00
nativeBuildInputs = [
autoPatchelfHook
];
buildInputs = [
stdenv.cc.cc.lib
zlib
libxkbfile
];
patches = [ ./0001-Use-console-logger-instead-of-rolling-files.patch ] ;
2019-12-05 13:07:17 +00:00
installPhase = ''
mkdir -p $out/bin
mkdir -p $out/share/trilium-server
cp -r ./* $out/share/trilium-server
'';
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
};
}