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