2023-02-02 18:25:31 +00:00
|
|
|
{ lib, callPackage, ... }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
let
|
2022-08-12 12:06:08 +00:00
|
|
|
metaCommon = with lib; {
|
|
|
|
description = "Hierarchical note taking application with focus on building large personal knowledge bases";
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/zadam/trilium";
|
2021-03-23 19:22:30 +00:00
|
|
|
license = licenses.agpl3Plus;
|
2022-06-16 17:23:12 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2020-04-24 23:36:52 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2023-02-02 18:25:31 +00:00
|
|
|
maintainers = with maintainers; [ fliegendewurst eliandoran ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
in {
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
trilium-desktop = callPackage ./desktop.nix { metaCommon = metaCommon; };
|
|
|
|
trilium-server = callPackage ./server.nix { metaCommon = metaCommon; };
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|