I’m trying to get my LaTeX setup working and have noticed that there are some packages that I’d like to use that aren’t in nixpkgs. The first such package I’ve come across is catppuccinPalette which has a CTAN entry.
The way I’ve installed LaTeX onto my system is through home manager by putting: (pkgs.texlive.combine { inherit (pkgs.texlive) scheme-full darkmode; });
in `home.packages’.
I’ve run into a similar problem with vim plugins that weren’t packaged in nixpkgs, so I dug around and was able to solve my issue very easily using lib.buildVimPlugin. However, looking at the source for various texlivePackages, I’m not exactly sure what to make of it.
Does anyone have any experience/ideas on how to manually package a LaTeX plugin for texlive?