test-caching/latex.nix
2020-08-14 16:44:41 +02:00

11 lines
169 B
Nix

{ nixpkgs ? import <nixpkgs> {} }:
let
inherit (nixpkgs) pkgs;
myTex = with pkgs; texlive.combine {
inherit (texlive) scheme-small dvisvgm;
};
in [
myTex
]