summary refs log tree commit diff
path: root/pkgs/applications/misc/zettlr/default.nix
blob: 75e310cdffec441eb1d3836e3714c4b51f268fc5 (plain) (blame)
1
2
3
4
5
6
7
8
{ callPackage, texliveMedium }:

builtins.mapAttrs (pname: attrs: callPackage ./generic.nix (attrs // { inherit pname; inherit texliveMedium; })) {
  zettlr = {
    version = "3.0.2";
    hash = "sha256-xwBq+kLmTth15uLiYWJOhi/YSPZVJNO6JTrKFojSDXA=";
  };
}