mirror of
https://github.com/rikhuijzer/test-caching.git
synced 2024-12-01 14:22:47 +03:00
12 lines
195 B
Nix
12 lines
195 B
Nix
{ nixpkgs ? import <nixpkgs> {} }:
|
|
|
|
let
|
|
inherit (nixpkgs) pkgs;
|
|
myTex = with pkgs; texlive.combine {
|
|
inherit (texlive) scheme-basic pdflatex dvisvgm;
|
|
};
|
|
in [
|
|
# myTex
|
|
pkgs.xdotool
|
|
]
|