mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
9 lines
257 B
Nix
9 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=";
|
|
};
|
|
}
|