[Nix-dev] texlive-core and texlive-extra

Peter Simons simons at cryp.to
Fri Jan 13 18:44:34 CET 2012


Hi Mathijs,

 > I need something called wrapfig.sty (emacs org-mode uses it). After
 > some searching, I found it's part of texLiveExtra.

I may have misunderstood what exactly you want to do, but it looks to me
like you need to add

{
  packageOverrides = pkgs: rec
  {
    myLatex = pkgs.texLiveAggregationFun {
      paths = [ pkgs.texLive pkgs.texLiveExtra ];
    };
  };
}

to ~/.nixpkgs/config.nix, and then install the 'myLatex' attribute into
your profile.

See <http://nixos.org/wiki/TexLive_HOWTO> for more about that.

Take care,
Peter



More information about the nix-dev mailing list