1 { lib, callPackage, ... }:
4 metaCommon = with lib; {
5 description = "Hierarchical note taking application with focus on building large personal knowledge bases";
6 homepage = "https://github.com/zadam/trilium";
7 license = licenses.agpl3Plus;
8 sourceProvenance = with sourceTypes; [ binaryNativeCode ];
9 platforms = [ "x86_64-linux" ];
10 maintainers = with maintainers; [ fliegendewurst eliandoran ];
14 trilium-desktop = callPackage ./desktop.nix { metaCommon = metaCommon; };
15 trilium-server = callPackage ./server.nix { metaCommon = metaCommon; };