biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / office / trilium / default.nix
blob35b9b694c09180b9a7081c442dbc3440d79dc12d
1 { lib, callPackage, ... }:
3 let
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 ];
11   };
12 in {
14   trilium-desktop = callPackage ./desktop.nix { metaCommon = metaCommon; };
15   trilium-server = callPackage ./server.nix { metaCommon = metaCommon; };