2023-01-14 21:22:52 +01:00
|
|
|
{ lib, callPackage, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
metaCommon = with lib; {
|
|
|
|
description = "Hierarchical note taking application with focus on building large personal knowledge bases";
|
|
|
|
homepage = "https://github.com/zadam/trilium";
|
|
|
|
license = licenses.agpl3Plus;
|
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
|
|
platforms = [ "x86_64-linux" ];
|
2023-01-16 21:03:54 +01:00
|
|
|
maintainers = with maintainers; [ fliegendewurst eliandoran ];
|
2023-01-14 21:22:52 +01:00
|
|
|
};
|
|
|
|
in {
|
|
|
|
|
|
|
|
trilium-desktop = callPackage ./desktop.nix { metaCommon = metaCommon; };
|
|
|
|
trilium-server = callPackage ./server.nix { metaCommon = metaCommon; };
|
|
|
|
|
|
|
|
}
|