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

12 lines
186 B
Nix

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