nixpkgs/pkgs/applications/misc/zettlr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
364 B
Nix
Raw Normal View History

2023-08-01 12:27:39 +00:00
{ callPackage, texlive }:
2020-07-09 16:02:09 +00:00
2023-08-01 12:27:39 +00:00
builtins.mapAttrs (pname: attrs: callPackage ./generic.nix (attrs // { inherit pname; inherit texlive; })) {
zettlr = {
version = "2.3.0";
hash = "sha256-3p9RO6hpioYF6kdGV+/9guoqxaPCJG73OsrN69SHQHk=";
2020-07-09 16:02:09 +00:00
};
2023-08-01 12:27:39 +00:00
zettlr-beta = {
version = "3.0.0-beta.7";
hash = "sha256-zIZaINE27bcjbs8yCGQ3UKAwStFdvhHD3Q1F93LrG4U=";
2020-07-09 16:02:09 +00:00
};
}