mirror of
https://github.com/rikhuijzer/test-caching.git
synced 2024-11-29 08:33:58 +03:00
11 lines
169 B
Nix
11 lines
169 B
Nix
{ nixpkgs ? import <nixpkgs> {} }:
|
|
|
|
let
|
|
inherit (nixpkgs) pkgs;
|
|
myTex = with pkgs; texlive.combine {
|
|
inherit (texlive) scheme-small dvisvgm;
|
|
};
|
|
in [
|
|
myTex
|
|
]
|