mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-07 22:33:08 +00:00
18 lines
586 B
Nix
18 lines
586 B
Nix
{ 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; };
|
|
|
|
}
|