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

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