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

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

9 lines
257 B
Nix
Raw Normal View History

{ callPackage, texliveMedium }:
2020-07-09 16:02:09 +00:00
builtins.mapAttrs (pname: attrs: callPackage ./generic.nix (attrs // { inherit pname; inherit texliveMedium; })) {
2023-08-01 12:27:39 +00:00
zettlr = {
2023-09-06 18:07:00 +00:00
version = "3.0.2";
hash = "sha256-xwBq+kLmTth15uLiYWJOhi/YSPZVJNO6JTrKFojSDXA=";
2020-07-09 16:02:09 +00:00
};
}