summary refs log tree commit diff
path: root/pkgs/applications/misc/zettlr/default.nix
blob: 79d386e349c05ec5767b9847da3c39a6b10ca187 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ callPackage, texlive }:

builtins.mapAttrs (pname: attrs: callPackage ./generic.nix (attrs // { inherit pname; inherit texlive; })) {
  zettlr = {
    version = "2.3.0";
    hash = "sha256-3p9RO6hpioYF6kdGV+/9guoqxaPCJG73OsrN69SHQHk=";
  };
  zettlr-beta = {
    version = "3.0.0-beta.7";
    hash = "sha256-zIZaINE27bcjbs8yCGQ3UKAwStFdvhHD3Q1F93LrG4U=";
  };
}