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

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

118 lines
3 KiB
Nix
Raw Normal View History

2021-04-27 20:04:18 +02:00
{ lib, stdenv, nixosTests, fetchurl, autoPatchelfHook, atomEnv, makeWrapper, makeDesktopItem, gtk3, libxshmfence, wrapGAppsHook }:
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" ];
2018-12-30 23:20:50 +01:00
};
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;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
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
};
2022-05-04 16:45:43 +02:00
version = "0.51.2";
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";
2022-05-04 16:45:43 +02:00
sha256 = "17bqcnpvflpi5dlz9m294diwd6as5wha5jcv9a3qvhh4pq0nyr4z";
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";
2022-05-04 16:45:43 +02:00
sha256 = "0jjvg75a4va5d81x8dvpzmzax7p0bqd7psv0alkkl13m91gai6ig";
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
nativeBuildInputs = [
autoPatchelfHook
makeWrapper
wrapGAppsHook
];
2020-08-03 10:32:27 +02:00
2021-04-27 20:04:18 +02:00
buildInputs = atomEnv.packages ++ [ gtk3 libxshmfence ];
2020-08-03 10:32:27 +02:00
installPhase = ''
2021-03-22 18:47:11 +01:00
runHook preInstall
mkdir -p $out/bin
mkdir -p $out/share/trilium
mkdir -p $out/share/{applications,icons/hicolor/128x128/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 $out/share/trilium/icon.png $out/share/icons/hicolor/128x128/apps/trilium.png
cp ${desktopItem}/share/applications/* $out/share/applications
2021-03-22 18:47:11 +01:00
runHook postInstall
'';
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
];
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
};
}