core/pkgs/by-name/te/texlive/packages.nix
2024-05-13 11:34:52 -04:00

11 lines
408 B
Nix

{ ... }:
res: pkgs: super:
with pkgs;
{
# TeX Live; see https://nixos.org/nixpkgs/manual/#sec-language-texlive
texlive = callPackage ./. { };
inherit (texlive.schemes) texliveBasic texliveBookPub texliveConTeXt texliveFull texliveGUST texliveInfraOnly texliveMedium texliveMinimal texliveSmall texliveTeTeX;
texlivePackages = recurseIntoAttrs (lib.filterAttrs (_: lib.isDerivation) texlive.pkgs);
}