test-caching/latex.nix

11 lines
170 B
Nix
Raw Normal View History

2020-08-14 16:45:36 +03:00
{ nixpkgs ? import <nixpkgs> {} }:
let
inherit (nixpkgs) pkgs;
myTex = with pkgs; texlive.combine {
2020-08-14 20:22:51 +03:00
inherit (texlive) scheme-basic pdflatex;
2020-08-14 16:45:36 +03:00
};
in [
2020-08-14 20:22:51 +03:00
myTex
2020-08-14 16:45:36 +03:00
]