about summary refs log tree commit diff
path: root/pkgs/applications/office/trilium/default.nix
blob: 35b9b694c09180b9a7081c442dbc3440d79dc12d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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" ];
    maintainers = with maintainers; [ fliegendewurst eliandoran ];
  };
in {

  trilium-desktop = callPackage ./desktop.nix { metaCommon = metaCommon; };
  trilium-server = callPackage ./server.nix { metaCommon = metaCommon; };

}